diff options
author | Cody Russell <crussell@canonical.com> | 2010-05-12 23:21:36 +0200 |
---|---|---|
committer | Cody Russell <crussell@canonical.com> | 2010-05-12 23:21:36 +0200 |
commit | a544da2cdf98dc1763a84626e13a1e2e5da98e83 (patch) | |
tree | e4a14450676f6e6bebaba97b2c53fbbac32adeb2 /src/idotypebuiltins.h.template | |
parent | ac894c8ff8c842a8911fbae7998789ada1a080e6 (diff) | |
download | ayatana-ido-a544da2cdf98dc1763a84626e13a1e2e5da98e83.tar.gz ayatana-ido-a544da2cdf98dc1763a84626e13a1e2e5da98e83.tar.bz2 ayatana-ido-a544da2cdf98dc1763a84626e13a1e2e5da98e83.zip |
IdoMessageDialog - a morphing message dialog.
Diffstat (limited to 'src/idotypebuiltins.h.template')
-rw-r--r-- | src/idotypebuiltins.h.template | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/idotypebuiltins.h.template b/src/idotypebuiltins.h.template new file mode 100644 index 0000000..0488673 --- /dev/null +++ b/src/idotypebuiltins.h.template @@ -0,0 +1,26 @@ +/*** BEGIN file-header ***/ +#ifndef __IDO_ENUM_TYPES_H__ +#define __IDO_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 /* !__IDO_ENUM_TYPES_H__ */ +/*** END file-tail ***/ + +/*** BEGIN value-header ***/ +GType @enum_name@_get_type (void) G_GNUC_CONST; +#define IDO_TYPE_@ENUMSHORT@ (@enum_name@_get_type()) + +/*** END value-header ***/ + |