summaryrefslogtreecommitdiffstats
path: root/scripts/PYPEmojiTable.h.in
blob: 7c1226c15c4018821ec13dc7b338a12328b7883e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __PY_LIB_PINYIN_EMOJI_TABLE_H
#define __PY_LIB_PINYIN_EMOJI_TABLE_H

namespace PY{

typedef struct {
    const char * m_emoji_match;
    const char * m_emoji_string;
} EmojiItem;

const EmojiItem english_emoji_table[] = {
@ENGLISH_EMOJIS@
};

const EmojiItem chinese_emoji_table[] = {
@CHINESE_EMOJIS@
};

};

#endif