www.pudn.com > mms.rar > mms_font.h


#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__