| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright © 2009 Red Hat, Inc. | 2 * Copyright © 2009 Red Hat, 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 10 matching lines...) Expand all Loading... |
| 21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO | 21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
| 22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 23 * | 23 * |
| 24 * Red Hat Author(s): Behdad Esfahbod | 24 * Red Hat Author(s): Behdad Esfahbod |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef HB_H | 27 #ifndef HB_H |
| 28 #define HB_H | 28 #define HB_H |
| 29 #define HB_H_IN | 29 #define HB_H_IN |
| 30 | 30 |
| 31 #ifndef HB_EXTERN |
| 32 #define HB_EXTERN extern |
| 33 #endif |
| 34 |
| 31 #include "hb-blob.h" | 35 #include "hb-blob.h" |
| 32 #include "hb-buffer.h" | 36 #include "hb-buffer.h" |
| 33 #include "hb-common.h" | 37 #include "hb-common.h" |
| 34 #include "hb-deprecated.h" | 38 #include "hb-deprecated.h" |
| 35 #include "hb-face.h" | 39 #include "hb-face.h" |
| 36 #include "hb-font.h" | 40 #include "hb-font.h" |
| 37 #include "hb-set.h" | 41 #include "hb-set.h" |
| 38 #include "hb-shape.h" | 42 #include "hb-shape.h" |
| 39 #include "hb-shape-plan.h" | 43 #include "hb-shape-plan.h" |
| 40 #include "hb-unicode.h" | 44 #include "hb-unicode.h" |
| 41 #include "hb-version.h" | 45 #include "hb-version.h" |
| 42 | 46 |
| 43 HB_BEGIN_DECLS | 47 HB_BEGIN_DECLS |
| 44 HB_END_DECLS | 48 HB_END_DECLS |
| 45 | 49 |
| 46 #undef HB_H_IN | 50 #undef HB_H_IN |
| 47 #endif /* HB_H */ | 51 #endif /* HB_H */ |
| OLD | NEW |