-
Notifications
You must be signed in to change notification settings - Fork 1
/
cpextern.h
38 lines (36 loc) · 1.09 KB
/
cpextern.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
extern const ucs2 cp437[];
extern const ucs2 cp737[];
extern const ucs2 cp775[];
extern const ucs2 cp850[];
extern const ucs2 cp852[];
extern const ucs2 cp855[];
extern const ucs2 cp857[];
extern const ucs2 cp858[];
extern const ucs2 cp866[];
extern const ucs2 cp874[];
extern const ucs2 cp1250[];
extern const ucs2 cp1251[];
extern const ucs2 cp1252[];
extern const ucs2 cp1253[];
extern const ucs2 cp1254[];
extern const ucs2 cp1257[];
extern const ucs2 cp1258[];
extern const ucs2 iso_8859_1[];
extern const ucs2 iso_8859_2[];
extern const ucs2 iso_8859_3[];
extern const ucs2 iso_8859_4[];
extern const ucs2 iso_8859_5[];
extern const ucs2 iso_8859_7[];
extern const ucs2 iso_8859_9[];
extern const ucs2 iso_8859_10[];
extern const ucs2 iso_8859_11[];
extern const ucs2 iso_8859_13[];
extern const ucs2 iso_8859_14[];
extern const ucs2 iso_8859_15[];
extern const ucs2 iso_8859_16[];
extern const ucs2 koi8_r[];
extern const ucs2 koi8_u[];
extern const ucs2 utf_8[];
typedef const ucs2 *charset_t;
typedef const struct {char *name; charset_t set; int flags;} charset_entry;
extern const charset_entry charsets[];