1
0
mirror of https://github.com/GNOME/gedit synced 2024-07-02 15:58:48 +00:00
gedit/plugins/filebrowser/gedit-file-browser-enum-register.c.template
Jeremy Bicha b90d9f4901 meson: get filebrowser plugin working again
This won't work on Windows but it's good enough for now.

This functionally matches what autotools did:
cat the 2 mkenums templates together. It feels a
bit messy to me but it seems to make sense.
2019-01-27 17:44:11 -05:00

21 lines
397 B
Plaintext

/*** BEGIN file-header ***/
void
gedit_file_browser_enum_and_flag_register_type (GTypeModule * module)
{
/*** END file-header ***/
/*** BEGIN file-production ***/
/* Enumerations from "@basename@" */
/*** END file-production ***/
/*** BEGIN enumeration-production ***/
register_@enum_name@ (module);
/*** END enumeration-production ***/
/*** BEGIN file-tail ***/
}
/*** END file-tail ***/