diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2008-05-27 07:06:07 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2008-05-27 07:06:07 +0000 | 
| commit | 5567809ce0381ebfc22d77e5df31624d23c591dc (patch) | |
| tree | 3bc2537c203bfbc25089ce62a6921ca1cb1f4f27 /gdbus/object.c | |
| parent | 9e9f9adde3085582f81da3b681e6fe5bb62679d3 (diff) | |
Add prototypes for interface registration
Diffstat (limited to 'gdbus/object.c')
| -rw-r--r-- | gdbus/object.c | 17 | 
1 files changed, 17 insertions, 0 deletions
| 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; +} | 
