aboutsummaryrefslogtreecommitdiff
path: root/src/application-service-appstore.h
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-07-12 09:28:16 -0500
committerTed Gould <ted@gould.cx>2010-07-12 09:28:16 -0500
commite273b812e0ee52f84e2284d2560e63437cbc1a67 (patch)
tree1eb460bc2d5bbb769af264b1bbd826a69a722f68 /src/application-service-appstore.h
parent4e2c23b9b99d2014747a051d949b0c2a2d9595db (diff)
parent7ef183418aaee73864e44d93b32e80962fdea07a (diff)
downloadlibayatana-appindicator-e273b812e0ee52f84e2284d2560e63437cbc1a67.tar.gz
libayatana-appindicator-e273b812e0ee52f84e2284d2560e63437cbc1a67.tar.bz2
libayatana-appindicator-e273b812e0ee52f84e2284d2560e63437cbc1a67.zip
* Merge upstream
* Adding an Approver API to remove things from the AppIndicators.
Diffstat (limited to 'src/application-service-appstore.h')
-rw-r--r--src/application-service-appstore.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/application-service-appstore.h b/src/application-service-appstore.h
index d2e0013..e8ba8c1 100644
--- a/src/application-service-appstore.h
+++ b/src/application-service-appstore.h
@@ -38,6 +38,7 @@ G_BEGIN_DECLS
typedef struct _ApplicationServiceAppstore ApplicationServiceAppstore;
typedef struct _ApplicationServiceAppstoreClass ApplicationServiceAppstoreClass;
+typedef struct _ApplicationServiceAppstorePrivate ApplicationServiceAppstorePrivate;
struct _ApplicationServiceAppstoreClass {
GObjectClass parent_class;
@@ -49,16 +50,21 @@ struct _ApplicationServiceAppstoreClass {
struct _ApplicationServiceAppstore {
GObject parent;
+
+ ApplicationServiceAppstorePrivate * priv;
};
ApplicationServiceAppstore * application_service_appstore_new (AppLruFile * lrufile);
GType application_service_appstore_get_type (void);
void application_service_appstore_application_add (ApplicationServiceAppstore * appstore,
- const gchar * dbus_name,
- const gchar * dbus_object);
+ const gchar * dbus_name,
+ const gchar * dbus_object);
void application_service_appstore_application_remove (ApplicationServiceAppstore * appstore,
- const gchar * dbus_name,
- const gchar * dbus_object);
+ const gchar * dbus_name,
+ const gchar * dbus_object);
+void application_service_appstore_approver_add (ApplicationServiceAppstore * appstore,
+ const gchar * dbus_name,
+ const gchar * dbus_object);
G_END_DECLS