OLD | NEW |
1 /* | 1 /* |
2 * Copyright © 2009 Red Hat, Inc. | 2 * Copyright © 2009 Red Hat, Inc. |
3 * Copyright © 2011 Codethink Limited | 3 * Copyright © 2011 Codethink Limited |
4 * Copyright © 2010,2011,2012 Google, Inc. | 4 * Copyright © 2010,2011,2012 Google, Inc. |
5 * | 5 * |
6 * This is part of HarfBuzz, a text shaping library. | 6 * This is part of HarfBuzz, a text shaping library. |
7 * | 7 * |
8 * Permission is hereby granted, without written agreement and without | 8 * Permission is hereby granted, without written agreement and without |
9 * license or royalty fees, to use, copy, modify, and distribute this | 9 * license or royalty fees, to use, copy, modify, and distribute this |
10 * software and its documentation for any purpose, provided that the | 10 * software and its documentation for any purpose, provided that the |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 #pragma message("Could not find any Unicode functions implementation, you have t
o provide your own") | 150 #pragma message("Could not find any Unicode functions implementation, you have t
o provide your own") |
151 #pragma message("To suppress this warnings, define HB_NO_UNICODE_FUNCS") | 151 #pragma message("To suppress this warnings, define HB_NO_UNICODE_FUNCS") |
152 #else | 152 #else |
153 #warning "Could not find any Unicode functions implementation, you have to provi
de your own" | 153 #warning "Could not find any Unicode functions implementation, you have to provi
de your own" |
154 #warning "To suppress this warning, define HB_NO_UNICODE_FUNCS" | 154 #warning "To suppress this warning, define HB_NO_UNICODE_FUNCS" |
155 #endif | 155 #endif |
156 #endif | 156 #endif |
157 | 157 |
158 /** | 158 /** |
159 * hb_unicode_funcs_create: (Xconstructor) | 159 * hb_unicode_funcs_create: (Xconstructor) |
160 * @parent: (allow-none): | 160 * @parent: (nullable): |
161 * | 161 * |
162 * | 162 * |
163 * | 163 * |
164 * Return value: (transfer full): | 164 * Return value: (transfer full): |
165 * | 165 * |
166 * Since: 1.0 | 166 * Since: 1.0 |
167 **/ | 167 **/ |
168 hb_unicode_funcs_t * | 168 hb_unicode_funcs_t * |
169 hb_unicode_funcs_create (hb_unicode_funcs_t *parent) | 169 hb_unicode_funcs_create (hb_unicode_funcs_t *parent) |
170 { | 170 { |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 230, /* HB_UNICODE_COMBINING_CLASS_ABOVE */ | 559 230, /* HB_UNICODE_COMBINING_CLASS_ABOVE */ |
560 231, | 560 231, |
561 232, /* HB_UNICODE_COMBINING_CLASS_ABOVE_RIGHT */ | 561 232, /* HB_UNICODE_COMBINING_CLASS_ABOVE_RIGHT */ |
562 233, /* HB_UNICODE_COMBINING_CLASS_DOUBLE_BELOW */ | 562 233, /* HB_UNICODE_COMBINING_CLASS_DOUBLE_BELOW */ |
563 234, /* HB_UNICODE_COMBINING_CLASS_DOUBLE_ABOVE */ | 563 234, /* HB_UNICODE_COMBINING_CLASS_DOUBLE_ABOVE */ |
564 235, 236, 237, 238, 239, | 564 235, 236, 237, 238, 239, |
565 240, /* HB_UNICODE_COMBINING_CLASS_IOTA_SUBSCRIPT */ | 565 240, /* HB_UNICODE_COMBINING_CLASS_IOTA_SUBSCRIPT */ |
566 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, | 566 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, |
567 255, /* HB_UNICODE_COMBINING_CLASS_INVALID */ | 567 255, /* HB_UNICODE_COMBINING_CLASS_INVALID */ |
568 }; | 568 }; |
OLD | NEW |