The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
498 B
25 lines
498 B
8 years ago
|
/*** BEGIN file-header ***/
|
||
|
#ifndef MESON_ENUMS_H
|
||
|
#define MESON_ENUMS_H
|
||
|
|
||
|
#include <glib-object.h>
|
||
|
|
||
|
G_BEGIN_DECLS
|
||
|
/*** END file-header ***/
|
||
|
|
||
|
/*** BEGIN file-production ***/
|
||
|
|
||
|
/* enumerations from "@basename@" */
|
||
|
/*** 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
|
||
|
|
||
|
#endif /* MESON_ENUMS_H */
|
||
|
/*** END file-tail ***/
|