aboutsummaryrefslogtreecommitdiff
path: root/libindicator
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-22 17:08:17 -0500
committerTed Gould <ted@canonical.com>2009-04-22 17:08:17 -0500
commit18397c82725b7cee22bf82b0539a4fb36dd49fe9 (patch)
treed95903ace28043fd825677419bdc9a04c7f2bdd7 /libindicator
parentef4bfdebdb12d945e2fca8583657ecb10978deba (diff)
downloadlibayatana-indicator-18397c82725b7cee22bf82b0539a4fb36dd49fe9.tar.gz
libayatana-indicator-18397c82725b7cee22bf82b0539a4fb36dd49fe9.tar.bz2
libayatana-indicator-18397c82725b7cee22bf82b0539a4fb36dd49fe9.zip
Turning versions into a function and adding a name symbol. Not yet used though.
Diffstat (limited to 'libindicator')
-rw-r--r--libindicator/indicator.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/libindicator/indicator.h b/libindicator/indicator.h
index f2bd51d..8947f5b 100644
--- a/libindicator/indicator.h
+++ b/libindicator/indicator.h
@@ -16,10 +16,19 @@ GtkImage * get_icon (void);
typedef GtkMenu * (*get_menu_t) (void);
GtkMenu * get_menu (void);
+#define INDICATOR_GET_VERSION_S "get_version"
+typedef gchar * (*get_version_t) (void);
+gchar * get_version (void);
+
#define INDICATOR_VERSION "0.2.0"
-#define INDICATOR_SET_VERSION gchar * indicator_version_symbol = INDICATOR_VERSION;
-#define INDICATOR_VERSION_S "indicator_version_symbol"
+#define INDICATOR_SET_VERSION gchar * get_version(void) { return INDICATOR_VERSION; }
#define INDICATOR_VERSION_CHECK(x) (!g_strcmp0(x, INDICATOR_VERSION))
+#define INDICATOR_GET_NAME_S "get_name"
+typedef gchar * (*get_name_t) (void);
+gchar * get_name (void);
+#define INDICATOR_SET_NAME(x) gchar * get_name(void) {return (x); }
+
+
#endif /* __LIBINDICATOR_INDICATOR_H_SEEN__ */