
The code to handle the Errors type information is automatically built with `glib-mkenums' and the new templates kept under `build-aux'.
27 lines
642 B
Plaintext
27 lines
642 B
Plaintext
/*** BEGIN file-header ***/
|
|
|
|
#ifndef __MM_ERRORS_TYPES_H__
|
|
#define __MM_ERRORS_TYPES_H__
|
|
|
|
#include <glib-object.h>
|
|
|
|
G_BEGIN_DECLS
|
|
/*** END file-header ***/
|
|
|
|
/*** BEGIN file-production ***/
|
|
|
|
/* enumerations from "@filename@" */
|
|
/*** END file-production ***/
|
|
|
|
/*** BEGIN value-header ***/
|
|
GQuark @enum_name@_quark (void); /* implemented in mm-errors-quarks.c */
|
|
GType @enum_name@_get_type (void) G_GNUC_CONST;
|
|
#define @ENUMNAME@ (@enum_name@_quark ())
|
|
#define @ENUMPREFIX@TYPE_@ENUMSHORT@ (@enum_name@_get_type ())
|
|
/*** END value-header ***/
|
|
|
|
/*** BEGIN file-tail ***/
|
|
G_END_DECLS
|
|
|
|
#endif /* __MM_ERRORS_TYPES_H__ */
|
|
/*** END file-tail ***/ |