OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Grigori Goronzy <greg@kinoho.net> | 2 * Copyright (C) 2012 Grigori Goronzy <greg@kinoho.net> |
3 * | 3 * |
4 * Permission to use, copy, modify, and/or distribute this software for any | 4 * Permission to use, copy, modify, and/or distribute this software for any |
5 * purpose with or without fee is hereby granted, provided that the above | 5 * purpose with or without fee is hereby granted, provided that the above |
6 * copyright notice and this permission notice appear in all copies. | 6 * copyright notice and this permission notice appear in all copies. |
7 * | 7 * |
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 HB_SCRIPT_MALAYALAM, | 42 HB_SCRIPT_MALAYALAM, |
43 HB_SCRIPT_SINHALA, | 43 HB_SCRIPT_SINHALA, |
44 HB_SCRIPT_THAI, | 44 HB_SCRIPT_THAI, |
45 HB_SCRIPT_LAO, | 45 HB_SCRIPT_LAO, |
46 HB_SCRIPT_TIBETAN, | 46 HB_SCRIPT_TIBETAN, |
47 HB_SCRIPT_MYANMAR, | 47 HB_SCRIPT_MYANMAR, |
48 HB_SCRIPT_GEORGIAN, | 48 HB_SCRIPT_GEORGIAN, |
49 HB_SCRIPT_HANGUL, | 49 HB_SCRIPT_HANGUL, |
50 HB_SCRIPT_ETHIOPIC, | 50 HB_SCRIPT_ETHIOPIC, |
51 HB_SCRIPT_CHEROKEE, | 51 HB_SCRIPT_CHEROKEE, |
52 HB_SCRIPT_CANADIAN_ABORIGINAL, | 52 HB_SCRIPT_CANADIAN_SYLLABICS, |
53 HB_SCRIPT_OGHAM, | 53 HB_SCRIPT_OGHAM, |
54 HB_SCRIPT_RUNIC, | 54 HB_SCRIPT_RUNIC, |
55 HB_SCRIPT_KHMER, | 55 HB_SCRIPT_KHMER, |
56 HB_SCRIPT_MONGOLIAN, | 56 HB_SCRIPT_MONGOLIAN, |
57 HB_SCRIPT_HIRAGANA, | 57 HB_SCRIPT_HIRAGANA, |
58 HB_SCRIPT_KATAKANA, | 58 HB_SCRIPT_KATAKANA, |
59 HB_SCRIPT_BOPOMOFO, | 59 HB_SCRIPT_BOPOMOFO, |
60 HB_SCRIPT_HAN, | 60 HB_SCRIPT_HAN, |
61 HB_SCRIPT_YI, | 61 HB_SCRIPT_YI, |
62 HB_SCRIPT_OLD_ITALIC, | 62 HB_SCRIPT_OLD_ITALIC, |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 { | 199 { |
200 #define HB_UNICODE_FUNC_IMPLEMENT(name) hb_ucdn_##name, | 200 #define HB_UNICODE_FUNC_IMPLEMENT(name) hb_ucdn_##name, |
201 HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS | 201 HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS |
202 #undef HB_UNICODE_FUNC_IMPLEMENT | 202 #undef HB_UNICODE_FUNC_IMPLEMENT |
203 } | 203 } |
204 }; | 204 }; |
205 | 205 |
206 return const_cast<hb_unicode_funcs_t *> (&_hb_ucdn_unicode_funcs); | 206 return const_cast<hb_unicode_funcs_t *> (&_hb_ucdn_unicode_funcs); |
207 } | 207 } |
208 | 208 |
OLD | NEW |