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