aboutsummaryrefslogtreecommitdiff
path: root/libindicator
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-21 14:49:57 -0500
committerTed Gould <ted@canonical.com>2009-04-21 14:49:57 -0500
commit4023d350d22120cd8405307f0e0465bdb95fbae6 (patch)
tree1937c009377b0ab59407cf3a353fcb453a66a700 /libindicator
parentb0c9eb5bd9000d8f743c6a72f3312a7df587f264 (diff)
downloadlibayatana-indicator-4023d350d22120cd8405307f0e0465bdb95fbae6.tar.gz
libayatana-indicator-4023d350d22120cd8405307f0e0465bdb95fbae6.tar.bz2
libayatana-indicator-4023d350d22120cd8405307f0e0465bdb95fbae6.zip
Fixing and using the new indicator header. This will help to connect things together and make them actually work in a reasonably type safe way.
Diffstat (limited to 'libindicator')
-rw-r--r--libindicator/indicator.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/libindicator/indicator.h b/libindicator/indicator.h
index 9afaa4f..daee3c8 100644
--- a/libindicator/indicator.h
+++ b/libindicator/indicator.h
@@ -5,13 +5,16 @@
#include <gtk/gtk.h>
#define INDICATOR_GET_LABEL_S "get_label"
-GtkLabel * get_label (void);
+typedef GtkLabel * (*get_label_t)(void);
+get_label_t get_label;
#define INDICATOR_GET_ICON_S "get_icon"
-GtkImage * get_icon (void);
+typedef GtkImage * (*get_icon_t) (void);
+get_icon_t get_icon;
#define INDICATOR_GET_MENU_S "get_menu"
-GtkMenu * get_menu (void);
+typedef GtkMenu * (*get_menu_t) (void);
+get_menu_t get_menu;
#endif /* __LIBINDICATOR_INDICATOR_H_SEEN__ */