aboutsummaryrefslogtreecommitdiff
path: root/src/custom-service-appstore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/custom-service-appstore.h')
-rw-r--r--src/custom-service-appstore.h11
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