core: avoid using DBusGMethodInvocation in auth API

While porting to GDBus, use opaque pointers. This allows us to include either a
DBusGMethodInvocation or a GDBusMethodInvocation in the 'context' pointer.

Once fully ported to GDBus, we can safely change it back to make the context be
a GDBusMethodInvocation.
This commit is contained in:
Aleksander Morgado
2011-09-02 20:28:12 +02:00
committed by Aleksander Morgado
parent 1e79a2d292
commit d47176a32c
16 changed files with 66 additions and 52 deletions

View File

@@ -22,7 +22,7 @@ G_DEFINE_TYPE (MMAuthRequest, mm_auth_request, G_TYPE_OBJECT)
typedef struct {
GObject *owner;
char *auth;
DBusGMethodInvocation *context;
gpointer context;
MMAuthRequestCb callback;
gpointer callback_data;
@@ -35,7 +35,7 @@ GObject *
mm_auth_request_new (GType atype,
const char *authorization,
GObject *owner,
DBusGMethodInvocation *context,
gpointer context,
MMAuthRequestCb callback,
gpointer callback_data,
GDestroyNotify notify)