api_msg.h 297 B

12345678910111213
  1. #ifndef _API_MSG_H
  2. #define _API_MSG_H
  3. #define NO_MSG 0
  4. void msg_queue_init(void);
  5. void msg_queue_clear(void);
  6. void msg_enqueue(u16 msg);
  7. u16 msg_dequeue(void);
  8. void msg_queue_detach(u16 msg, u8 flag); //flag=0,消息池中剔除msg消息; flag=1,消息池只保留msg消息
  9. #endif // _API_MSG_H