summaryrefslogtreecommitdiff
path: root/gio/gdbusprivate.h
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2010-08-22 22:56:49 -0400
committerDavid Zeuthen <davidz@redhat.com>2010-08-22 22:58:29 -0400
commit847e4dfe7d2ff84c23fba332381e5121ab54aa39 (patch)
tree074b048d4965e148839ee266bcbafe24bbf187d7 /gio/gdbusprivate.h
parent5668d52babfd40ac502463006f964665f3561008 (diff)
downloadglib-847e4dfe7d2ff84c23fba332381e5121ab54aa39.tar.gz
GDBusMethodInvocation: nuke constructor
... that is, make it private. This makes sense because users are never expected to create such objects themselves - only the GDBus core will need this. Signed-off-by: David Zeuthen <davidz@redhat.com>
Diffstat (limited to 'gio/gdbusprivate.h')
-rw-r--r--gio/gdbusprivate.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/gio/gdbusprivate.h b/gio/gdbusprivate.h
index ec58c119c..0218a228e 100644
--- a/gio/gdbusprivate.h
+++ b/gio/gdbusprivate.h
@@ -114,4 +114,16 @@ gchar *_g_dbus_enum_to_string (GType enum_type, gint value);
G_END_DECLS
+/* ---------------------------------------------------------------------------------------------------- */
+
+GDBusMethodInvocation *_g_dbus_method_invocation_new (const gchar *sender,
+ const gchar *object_path,
+ const gchar *interface_name,
+ const gchar *method_name,
+ const GDBusMethodInfo *method_info,
+ GDBusConnection *connection,
+ GDBusMessage *message,
+ GVariant *parameters,
+ gpointer user_data);
+
#endif /* __G_DBUS_PRIVATE_H__ */