diff options
author | Ted Gould <ted@canonical.com> | 2009-11-06 20:41:18 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-06 20:41:18 -0600 |
commit | 591311a82b0ce6e0bc74439186bb22d5224d85c5 (patch) | |
tree | fc60b788c37a03f98a01e71af8151349cac447cf /src/custom-service-watcher.h | |
parent | ced0ec2c7e9e9138fb42422e662bf03deb957343 (diff) | |
download | libayatana-appindicator-591311a82b0ce6e0bc74439186bb22d5224d85c5.tar.gz libayatana-appindicator-591311a82b0ce6e0bc74439186bb22d5224d85c5.tar.bz2 libayatana-appindicator-591311a82b0ce6e0bc74439186bb22d5224d85c5.zip |
Woot! Now we have signals in our watcher. Let's rock on!
Diffstat (limited to 'src/custom-service-watcher.h')
-rw-r--r-- | src/custom-service-watcher.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/custom-service-watcher.h b/src/custom-service-watcher.h index c705fb5..1a037be 100644 --- a/src/custom-service-watcher.h +++ b/src/custom-service-watcher.h @@ -20,6 +20,12 @@ typedef struct _CustomServiceWatcherClass CustomServiceWatcherClass; struct _CustomServiceWatcherClass { GObjectClass parent_class; + + /* Signals */ + void (*service_registered) (CustomServiceWatcher * watcher, gchar * object, gpointer data); + void (*service_unregistered) (CustomServiceWatcher * watcher, gchar * object, gpointer data); + void (*notification_host_registered) (CustomServiceWatcher * watcher, gpointer data); + void (*notification_host_unregistered) (CustomServiceWatcher * watcher, gpointer data); }; struct _CustomServiceWatcher { |