ListBoxSMS.h 828 B

123456789101112131415161718192021
  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. #define LIST_ITEM_TEXT_LEN_MAX 16
  12. //SUT_LIST_BOX_SMS_INFO
  13. struct SUT_LIST_BOX_SMS_INFO
  14. {//在显示时使用
  15. char item[LIST_ITEM_TEXT_LEN_MAX];//消息预读内容
  16. char features; //已读或未读标记
  17. };
  18. void ListBoxItemNumShowSMS(uint16_t curIndex, uint16_t total);
  19. /*******************************End of Module********************************************/
  20. #endif