ListBoxSMS.h 931 B

1234567891011121314151617181920212223242526
  1. /********************************************************************************
  2. * File Name: ListBoxSMS.h
  3. * Function Describe: ListBoxSMS.c declare module
  4. * Relate Module: GUI.c
  5. * Writer: Shliangwen
  6. * Date: 2016-2-1
  7. *******************************************************************************/
  8. #ifndef __LIST_BOX_SMS_H
  9. #define __LIST_BOX_SMS_H
  10. /*****************************Begin of Module*********************************************/
  11. #ifndef NULL
  12. #define NULL 0
  13. #endif
  14. #define LIST_ITEM_TEXT_LEN_MAX 20
  15. #pragma pack(push)
  16. #pragma pack(1)
  17. typedef struct
  18. {//在显示时使用
  19. char item[LIST_ITEM_TEXT_LEN_MAX];//消息预读内容
  20. char features; //已读或未读标记
  21. }SUT_LIST_BOX_SMS_INFO;
  22. #pragma pack(pop)
  23. void ListBoxItemNumShowSMS(unsigned short curIndex, unsigned short total);
  24. /*******************************End of Module********************************************/
  25. #endif