diff options
author | Ted Gould <ted@gould.cx> | 2010-07-15 10:20:14 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-07-15 10:20:14 -0500 |
commit | 863cd1c1debec979f11ca59c8fbf4ed129183edf (patch) | |
tree | 74d872edb8efc6770dedb64a63673f9ba9add08e /src/application-service-appstore.h | |
parent | 44880df7222487d65b68c7c53a9d28de9cc2f32c (diff) | |
parent | 17dea0907c51dfb39686f6840a9404467d79db82 (diff) | |
download | libayatana-appindicator-863cd1c1debec979f11ca59c8fbf4ed129183edf.tar.gz libayatana-appindicator-863cd1c1debec979f11ca59c8fbf4ed129183edf.tar.bz2 libayatana-appindicator-863cd1c1debec979f11ca59c8fbf4ed129183edf.zip |
Import upstream version 0.2.3
Diffstat (limited to 'src/application-service-appstore.h')
-rw-r--r-- | src/application-service-appstore.h | 14 |
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 |