OLD | NEW |
1 /* | 1 /* |
2 * Copyright © 2012 Google, Inc. | 2 * Copyright © 2012 Google, Inc. |
3 * | 3 * |
4 * This is part of HarfBuzz, a text shaping library. | 4 * This is part of HarfBuzz, a text shaping library. |
5 * | 5 * |
6 * Permission is hereby granted, without written agreement and without | 6 * Permission is hereby granted, without written agreement and without |
7 * license or royalty fees, to use, copy, modify, and distribute this | 7 * license or royalty fees, to use, copy, modify, and distribute this |
8 * software and its documentation for any purpose, provided that the | 8 * software and its documentation for any purpose, provided that the |
9 * above copyright notice and the following two paragraphs appear in | 9 * above copyright notice and the following two paragraphs appear in |
10 * all copies of this software. | 10 * all copies of this software. |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 | 46 |
47 #if defined(HB_ATOMIC_INT_NIL) || defined(HB_MUTEX_IMPL_NIL) | 47 #if defined(HB_ATOMIC_INT_NIL) || defined(HB_MUTEX_IMPL_NIL) |
48 #ifdef _MSC_VER | 48 #ifdef _MSC_VER |
49 #pragma message("To suppress these warnings, define HB_NO_MT") | 49 #pragma message("To suppress these warnings, define HB_NO_MT") |
50 #else | 50 #else |
51 #warning "To suppress these warnings, define HB_NO_MT" | 51 #warning "To suppress these warnings, define HB_NO_MT" |
52 #endif | 52 #endif |
53 #endif | 53 #endif |
54 | 54 |
55 | 55 |
56 #include "hb-unicode-private.hh" | |
57 | |
58 #if !defined(HB_NO_UNICODE_FUNCS) && defined(HB_UNICODE_FUNCS_NIL) | |
59 #ifdef _MSC_VER | |
60 #pragma message("Could not find any Unicode functions implementation, you have t
o provide your own") | |
61 #pragma message("To suppress this warnings, define HB_NO_UNICODE_FUNCS") | |
62 #else | |
63 #warning "Could not find any Unicode functions implementation, you have to provi
de your own" | |
64 #warning "To suppress this warning, define HB_NO_UNICODE_FUNCS" | |
65 #endif | |
66 #endif | |
OLD | NEW |