mms_font.h
资源名称:MMSCodes.rar [点击查看]
上传用户:fuyouda
上传日期:2021-12-23
资源大小:164k
文件大小:1k
源码类别:
手机彩信(MMS)编程
开发平台:
C/C++
- #ifndef _MMI_FONT_DEF_H__
- #define _MMI_FONT_DEF_H__
- #include "sci_types.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- ///////////////////////////////////////////////////////////////////////////////
- // 字库资源的信息
- ///////////////////////////////////////////////////////////////////////////////
- /*
- // 字库的类型
- typedef enum _GUI_FONT_T
- {
- SONG_FONT_8 = 0,
- SONG_FONT_10,
- SONG_FONT_12,
- SONG_FONT_14,
- SONG_FONT_16,
- ASC_ME_FONT_38,
- ARI_NARROW_FONT_29,
- GUI_MAX_FONT_NUM,
- } GUI_FONT_T;
- typedef struct _GUI_FONT_INFO_T
- {
- GUI_FONT_T type; //字库类型
- uint32 ngb_db_size;
- uint8 * gb_database_ptr; //对应的数据库
- uint32 nascii_db_size;
- uint8 * pascii_ptr; //对应的ASCII码数据库
- } GUI_FONT_INFO_T, * P_GUI_FONT_INFO_T;
- */
- #ifdef __cplusplus
- }
- #endif
- #endif // _MMI_FONT_DEF_H__