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-types.h.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

29 lines
657 B
Plaintext

/*** BEGIN file-header ***/
#ifndef __GEDIT_FILE_BROWSER_ENUM_TYPES_H__
#define __GEDIT_FILE_BROWSER_ENUM_TYPES_H__
#include <glib-object.h>
G_BEGIN_DECLS
/*** END file-header ***/
/*** BEGIN file-production ***/
/* Enumerations from "@basename@" */
/*** END file-production ***/
/*** BEGIN enumeration-production ***/
#define GEDIT_TYPE_@ENUMSHORT@ (@enum_name@_get_type())
GType @enum_name@_get_type (void) G_GNUC_CONST;
/*** END enumeration-production ***/
/*** BEGIN file-tail ***/
void gedit_file_browser_enum_and_flag_register_type (GTypeModule * module);
G_END_DECLS
#endif /* __GEDIT_FILE_BROWSER_ENUM_TYPES_H__ */
/*** END file-tail ***/