155c22b93a
* clutter/Makefile.am: * clutter/clutter-enum-types.h.in: * clutter/clutter-enum-types.c.in: Use template files for glib-mkenums; this makes the Makefile template a bit more clean and the enum types generation more customisable (e.g. when GLib 2.14 has been released, we can use g_once_init_enter() and g_once_init_leave() to have thread-safe GType functions for the enum types as well).
27 lines
530 B
C
27 lines
530 B
C
/*** BEGIN file-header ***/
|
|
#ifndef __CLUTTER_ENUM_TYPES_H__
|
|
#define __CLUTTER_ENUM_TYPES_H__
|
|
|
|
#include <glib-object.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/*** END file-header ***/
|
|
|
|
/*** BEGIN file-production ***/
|
|
/* enumerations from "@filename@" */
|
|
/*** END file-production ***/
|
|
|
|
/*** BEGIN file-tail ***/
|
|
G_END_DECLS
|
|
|
|
#endif /* !__CLUTTER_ENUM_TYPES_H__ */
|
|
/*** END file-tail ***/
|
|
|
|
/*** BEGIN value-header ***/
|
|
GType @enum_name@_get_type (void) G_GNUC_CONST;
|
|
#define CLUTTER_TYPE_@ENUMSHORT@ (@enum_name@_get_type())
|
|
|
|
/*** END value-header ***/
|
|
|