From 5567809ce0381ebfc22d77e5df31624d23c591dc Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 27 May 2008 07:06:07 +0000 Subject: Add prototypes for interface registration --- gdbus/object.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'gdbus/object.c') diff --git a/gdbus/object.c b/gdbus/object.c index 12ba66a9..738a6385 100644 --- a/gdbus/object.c +++ b/gdbus/object.c @@ -658,3 +658,20 @@ fail: dbus_message_unref(signal); return ret; } + +gboolean g_dbus_register_interface(DBusConnection *connection, + const char *path, const char *name, + GDBusMethodTable *methods, + GDBusSignalTable *signals, + GDBusPropertyTable *properties, + void *user_data, + GDBusDestroyFunction destroy) +{ + return FALSE; +} + +gboolean g_dbus_unregister_interface(DBusConnection *connection, + const char *path, const char *name) +{ + return FALSE; +} -- cgit