newMessage.h 350 B

1234567891011121314151617181920
  1. #ifndef __NEW_MESSAGE_H_
  2. #define __NEW_MESSAGE_H_
  3. #include "stdint.h"
  4. #include "gui.h"
  5. #include "uiEntry.h"
  6. #ifndef NULL
  7. #define NULL 0
  8. #endif
  9. typedef enum{
  10. SHOW_INIT,
  11. SHOW_HEAD,
  12. SHOW_DOWN,
  13. SHOW_UP
  14. }SHOW_ENUM;
  15. char newMessageInit(FONT_MODEENUM fontMode,char *info1, char *info2, char *info3);
  16. void newMessageShow(SHOW_ENUM direction);
  17. #endif