diff options
Diffstat (limited to 'build-aux/mm-enums-template.h')
-rw-r--r-- | build-aux/mm-enums-template.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/build-aux/mm-enums-template.h b/build-aux/mm-enums-template.h new file mode 100644 index 00000000..bf7a059c --- /dev/null +++ b/build-aux/mm-enums-template.h @@ -0,0 +1,21 @@ +/*** BEGIN file-header ***/ + +#include <glib-object.h> + +G_BEGIN_DECLS +/*** END file-header ***/ + +/*** BEGIN file-production ***/ + +/* enumerations from "@filename@" */ +/*** END file-production ***/ + +/*** BEGIN value-header ***/ +GType @enum_name@_get_type (void) G_GNUC_CONST; +#define @ENUMPREFIX@TYPE_@ENUMSHORT@ (@enum_name@_get_type ()) +/*** END value-header ***/ + +/*** BEGIN file-tail ***/ +G_END_DECLS + +/*** END file-tail ***/ |