diff options
author | Ted Gould <ted@canonical.com> | 2009-11-08 23:03:39 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-08 23:03:39 -0600 |
commit | 3d0184bcbf410c6e98bde748dad0f1137f926e57 (patch) | |
tree | 5629673a8972654e096c677919b6a26cc9f5ee84 /src/custom-service-appstore.h | |
parent | 3345ad50147621c5a3b374e50754a312db609a0f (diff) | |
parent | d0abddaaf72e621a495871e5805cd39a51891b2b (diff) | |
download | libayatana-appindicator-3d0184bcbf410c6e98bde748dad0f1137f926e57.tar.gz libayatana-appindicator-3d0184bcbf410c6e98bde748dad0f1137f926e57.tar.bz2 libayatana-appindicator-3d0184bcbf410c6e98bde748dad0f1137f926e57.zip |
Building the service and getting things in better shape.
Diffstat (limited to 'src/custom-service-appstore.h')
-rw-r--r-- | src/custom-service-appstore.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/custom-service-appstore.h b/src/custom-service-appstore.h index 48c9da9..7263617 100644 --- a/src/custom-service-appstore.h +++ b/src/custom-service-appstore.h @@ -22,9 +22,18 @@ struct _CustomServiceAppstoreClass { struct _CustomServiceAppstore { GObject parent; + + void (*application_added) (CustomServiceAppstore * appstore, gchar *, gint, gchar *, gchar *, gpointer); + void (*application_removed) (CustomServiceAppstore * appstore, gint, gpointer); }; -GType custom_service_appstore_get_type (void); +GType custom_service_appstore_get_type (void); +void custom_service_appstore_application_add (CustomServiceAppstore * appstore, + const gchar * dbus_name, + const gchar * dbus_object); +void custom_service_appstore_application_remove (CustomServiceAppstore * appstore, + const gchar * dbus_name, + const gchar * dbus_object); G_END_DECLS |