相关代码 |
|
//===font.h============= #ifndef FONT_H #define FONT_H #include "type.h" //汉字字模的数据结构定义 typedef struct // 汉字字模数据结构 { INT8U Index[3]; // 汉字内码索引 INT8U Msk[32]; // 点阵码数据 }GB16FONT; extern const INT8U S8X12Tab[]; extern GB16FONT GB_16[]; extern const INT8U S32X32Tab[]; extern const INT8U PICTab[]; #endif //=============end===============================
相关资源 |
|