| OLD | NEW |
| (Empty) |
| 1 /*** BEGIN file-header ***/ | |
| 2 /* | |
| 3 * Copyright © 2011 Google, Inc. | |
| 4 * | |
| 5 * This is part of HarfBuzz, a text shaping library. | |
| 6 * | |
| 7 * Permission is hereby granted, without written agreement and without | |
| 8 * license or royalty fees, to use, copy, modify, and distribute this | |
| 9 * software and its documentation for any purpose, provided that the | |
| 10 * above copyright notice and the following two paragraphs appear in | |
| 11 * all copies of this software. | |
| 12 * | |
| 13 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR | |
| 14 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES | |
| 15 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN | |
| 16 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH | |
| 17 * DAMAGE. | |
| 18 * | |
| 19 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, | |
| 20 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND | |
| 21 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS | |
| 22 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO | |
| 23 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | |
| 24 * | |
| 25 * Google Author(s): Behdad Esfahbod | |
| 26 */ | |
| 27 | |
| 28 #include "hb-private.hh" | |
| 29 | |
| 30 /* g++ didn't like older gtype.h gcc-only code path. */ | |
| 31 #include <glib.h> | |
| 32 #if !GLIB_CHECK_VERSION(2,29,16) | |
| 33 #undef __GNUC__ | |
| 34 #undef __GNUC_MINOR__ | |
| 35 #define __GNUC__ 2 | |
| 36 #define __GNUC_MINOR__ 6 | |
| 37 #endif | |
| 38 | |
| 39 #include "hb-gobject.h" | |
| 40 | |
| 41 /*** END file-header ***/ | |
| 42 | |
| 43 /*** BEGIN file-production ***/ | |
| 44 /* enumerations from "@filename@" */ | |
| 45 /*** END file-production ***/ | |
| 46 | |
| 47 /*** BEGIN value-header ***/ | |
| 48 GType | |
| 49 @enum_name@_get_type (void) | |
| 50 { | |
| 51 static gsize type_id = 0; | |
| 52 | |
| 53 if (g_once_init_enter (&type_id)) | |
| 54 { | |
| 55 static const G@Type@Value values[] = { | |
| 56 /*** END value-header ***/ | |
| 57 | |
| 58 /*** BEGIN value-production ***/ | |
| 59 { @VALUENAME@, "@VALUENAME@", "@valuenick@" }, | |
| 60 /*** END value-production ***/ | |
| 61 | |
| 62 /*** BEGIN value-tail ***/ | |
| 63 { 0, NULL, NULL } | |
| 64 }; | |
| 65 GType id = | |
| 66 g_@type@_register_static (g_intern_static_string ("@EnumName@"), values)
; | |
| 67 g_once_init_leave (&type_id, id); | |
| 68 } | |
| 69 | |
| 70 return type_id; | |
| 71 } | |
| 72 | |
| 73 /*** END value-tail ***/ | |
| OLD | NEW |