| OLD | NEW |
| 1 #include <stdint.h> | 1 #include <stdint.h> |
| 2 #include <stdlib.h> | 2 #include <stdlib.h> |
| 3 | 3 |
| 4 #include <harfbuzz-external.h> | 4 #include <harfbuzz-external.h> |
| 5 #include <harfbuzz-impl.h> | 5 #include <harfbuzz-impl.h> |
| 6 #include <harfbuzz-shaper.h> | 6 #include <harfbuzz-shaper.h> |
| 7 #include "harfbuzz-unicode.h" | 7 #include "harfbuzz-unicode.h" |
| 8 | 8 |
| 9 #include "tables/grapheme-break-properties.h" | 9 #include "tables/grapheme-break-properties.h" |
| 10 #include "tables/mirroring-properties.h" | 10 #include "tables/mirroring-properties.h" |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 mirroring_properties_count, | 257 mirroring_properties_count, |
| 258 sizeof(struct mirroring_property), | 258 sizeof(struct mirroring_property), |
| 259 mirroring_property_cmp); | 259 mirroring_property_cmp); |
| 260 if (!mprop) | 260 if (!mprop) |
| 261 return ch; | 261 return ch; |
| 262 | 262 |
| 263 return ((const struct mirroring_property *) mprop)->b; | 263 return ((const struct mirroring_property *) mprop)->b; |
| 264 } | 264 } |
| 265 | 265 |
| 266 void * | 266 void * |
| 267 HB_Library_Resolve(const char *library, const char *symbol) { | 267 HB_Library_Resolve(const char *library, int version, const char *symbol) { |
| 268 abort(); | 268 abort(); |
| 269 return NULL; | 269 return NULL; |
| 270 } | 270 } |
| 271 | |
| 272 void * | |
| 273 HB_TextCodecForMib(int mib) { | |
| 274 abort(); | |
| 275 return NULL; | |
| 276 } | |
| 277 | |
| 278 char * | |
| 279 HB_TextCodec_ConvertFromUnicode(void *codec, const HB_UChar16 *unicode, hb_uint3
2 length, hb_uint32 *outputLength) { | |
| 280 abort(); | |
| 281 return NULL; | |
| 282 } | |
| 283 | |
| 284 void | |
| 285 HB_TextCodec_FreeResult(char *v) { | |
| 286 abort(); | |
| 287 } | |
| OLD | NEW |