| |
| #include "config.h" |
| |
| #include <gdk-pixbuf/gdk-pixbuf.h> |
| |
| |
| |
| |
| |
| |
| |
| |
| GType |
| @enum_name@_get_type (void) |
| { |
| static GType etype = 0; |
| |
| if (G_UNLIKELY(etype == 0)) { |
| static const G@Type@Value values[] = { |
| |
| |
| |
| { @VALUENAME@, "@VALUENAME@", "@valuenick@" }, |
| |
| |
| |
| { 0, NULL, NULL } |
| }; |
| etype = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values); |
| } |
| return etype; |
| } |
| |
| |
| |
| |
| |