libvips/libvips/iofuncs/enumtemplate

40 lines
868 B
Plaintext

/*** BEGIN file-header ***/
/* auto-generated enums for vips introspection */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /*HAVE_CONFIG_H*/
#include <vips/vips.h>
/*** END file-header ***/
/*** BEGIN file-production ***/
/* enumerations from "@basename@" */
/*** END file-production ***/
/*** BEGIN value-header ***/
GType
@enum_name@_get_type( void )
{
static gsize gtype_id = 0;
if( g_once_init_enter ( &gtype_id ) ) {
static const G@Type@Value values[] = {
/*** END value-header ***/
/*** BEGIN value-production ***/
{@VALUENAME@, "@VALUENAME@", "@valuenick@"},
/*** END value-production ***/
/*** BEGIN value-tail ***/
{0, NULL, NULL}
};
GType new_type =
g_@type@_register_static( g_intern_static_string( "@EnumName@" ), values );
g_once_init_leave( &gtype_id, new_type );
}
return( (GType) gtype_id );
}
/*** END value-tail ***/