1234567891011121314151617181920212223242526 |
- /********************************************************************************
- * File Name: ListBoxSMS.h
- * Function Describe: ListBoxSMS.c declare module
- * Relate Module: GUI.c
- * Writer: Shliangwen
- * Date: 2016-2-1
- *******************************************************************************/
- #ifndef __LIST_BOX_SMS_H
- #define __LIST_BOX_SMS_H
- /*****************************Begin of Module*********************************************/
- #ifndef NULL
- #define NULL 0
- #endif
- #define LIST_ITEM_TEXT_LEN_MAX 20
- #pragma pack(push)
- #pragma pack(1)
- typedef struct
- {//在显示时使用
- char item[LIST_ITEM_TEXT_LEN_MAX];//消息预读内容
- char features; //已读或未读标记
- }SUT_LIST_BOX_SMS_INFO;
- #pragma pack(pop)
- void ListBoxItemNumShowSMS(unsigned short curIndex, unsigned short total);
- /*******************************End of Module********************************************/
- #endif
|