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 © 2011 Google, Inc. | 4 * Copyright © 2011 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 10 matching lines...) Expand all Loading... |
21 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND | 21 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
22 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS | 22 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
23 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO | 23 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
24 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 24 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
25 * | 25 * |
26 * Red Hat Author(s): Behdad Esfahbod | 26 * Red Hat Author(s): Behdad Esfahbod |
27 * Codethink Author(s): Ryan Lortie | 27 * Codethink Author(s): Ryan Lortie |
28 * Google Author(s): Behdad Esfahbod | 28 * Google Author(s): Behdad Esfahbod |
29 */ | 29 */ |
30 | 30 |
| 31 #ifndef HB_H_IN |
| 32 #error "Include <hb.h> instead." |
| 33 #endif |
| 34 |
31 #ifndef HB_UNICODE_H | 35 #ifndef HB_UNICODE_H |
32 #define HB_UNICODE_H | 36 #define HB_UNICODE_H |
33 | 37 |
34 #include "hb-common.h" | 38 #include "hb-common.h" |
35 | 39 |
36 HB_BEGIN_DECLS | 40 HB_BEGIN_DECLS |
37 | 41 |
38 | 42 |
39 /* | 43 /* |
40 * hb_unicode_funcs_t | 44 * hb_unicode_funcs_t |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 hb_codepoint_t *ab); | 189 hb_codepoint_t *ab); |
186 hb_bool_t | 190 hb_bool_t |
187 hb_unicode_decompose (hb_unicode_funcs_t *ufuncs, | 191 hb_unicode_decompose (hb_unicode_funcs_t *ufuncs, |
188 hb_codepoint_t ab, | 192 hb_codepoint_t ab, |
189 hb_codepoint_t *a, | 193 hb_codepoint_t *a, |
190 hb_codepoint_t *b); | 194 hb_codepoint_t *b); |
191 | 195 |
192 HB_END_DECLS | 196 HB_END_DECLS |
193 | 197 |
194 #endif /* HB_UNICODE_H */ | 198 #endif /* HB_UNICODE_H */ |
OLD | NEW |