14 lines
389 B
Plaintext
14 lines
389 B
Plaintext
#ifndef _EMOJI_FONT_H_
|
||
#define _EMOJI_FONT_H_
|
||
|
||
// 这是一个示例文件,实际项目中需要替换为真实的字体文件
|
||
// 在真实项目中,这个文件应该包含有效的TTF字体数据
|
||
|
||
const unsigned char iconfont_ttf[] = {
|
||
0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
|
||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
||
};
|
||
|
||
unsigned int iconfont_ttf_len = 16;
|
||
|
||
#endif |