2007-08-20 16:16:15 -04:00
|
|
|
/*** BEGIN file-header ***/
|
2023-08-07 09:38:12 -04:00
|
|
|
#include "clutter/clutter-build-config.h"
|
|
|
|
#include "clutter/clutter-enum-types.h"
|
2007-08-20 16:16:15 -04:00
|
|
|
/*** END file-header ***/
|
|
|
|
|
|
|
|
/*** BEGIN file-production ***/
|
2009-05-29 07:40:23 -04:00
|
|
|
|
2007-08-20 16:16:15 -04:00
|
|
|
/* enumerations from "@filename@" */
|
|
|
|
#include "@filename@"
|
2009-05-29 07:40:23 -04:00
|
|
|
|
2007-08-20 16:16:15 -04:00
|
|
|
/*** END file-production ***/
|
|
|
|
|
|
|
|
/*** BEGIN value-header ***/
|
|
|
|
GType
|
2009-05-29 07:40:23 -04:00
|
|
|
@enum_name@_get_type (void)
|
|
|
|
{
|
2021-03-16 14:30:37 -04:00
|
|
|
static size_t g_enum_type_id = 0;
|
2009-05-29 07:40:23 -04:00
|
|
|
|
2021-03-16 14:30:37 -04:00
|
|
|
if (g_once_init_enter (&g_enum_type_id))
|
2007-08-20 16:16:15 -04:00
|
|
|
{
|
|
|
|
static const G@Type@Value values[] = {
|
|
|
|
/*** END value-header ***/
|
|
|
|
|
|
|
|
/*** BEGIN value-production ***/
|
|
|
|
{ @VALUENAME@, "@VALUENAME@", "@valuenick@" },
|
|
|
|
/*** END value-production ***/
|
|
|
|
|
|
|
|
/*** BEGIN value-tail ***/
|
|
|
|
{ 0, NULL, NULL }
|
|
|
|
};
|
2021-03-16 14:30:37 -04:00
|
|
|
GType id;
|
2009-05-29 07:40:23 -04:00
|
|
|
|
2021-03-16 14:30:37 -04:00
|
|
|
id = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
|
2009-05-29 07:40:23 -04:00
|
|
|
|
2021-03-16 14:30:37 -04:00
|
|
|
g_once_init_leave (&g_enum_type_id, id);
|
2007-08-20 16:16:15 -04:00
|
|
|
}
|
2009-05-29 07:40:23 -04:00
|
|
|
|
2021-03-16 14:30:37 -04:00
|
|
|
return g_enum_type_id;
|
2007-08-20 16:16:15 -04:00
|
|
|
}
|
|
|
|
/*** END value-tail ***/
|