search for: dbus_connection_send

Displaying 2 results from an estimated 2 matches for "dbus_connection_send".

2006 Nov 12
4
Include option type in gconf schema
I am writing a configuration front end for the compiz gconf plugin at the moment, but it's proving harder than it should be because gconf does not record what type of compiz option the key is. For example, say i want a color picker for each color option the only way I can tell with gconf if it is color is if it has a # at the beginning, but there could be string option which also have a # at
2007 May 17
0
[PATCH] Add getCoreInfo function
..._INVALID); + dbus_message_append_args (reply, DBUS_TYPE_STRING, &pluginDir, DBUS_TYPE_INVALID); + dbus_message_append_args (reply, DBUS_TYPE_STRING, &homePluginDir, DBUS_TYPE_INVALID); + dbus_message_append_args (reply, DBUS_TYPE_STRING, &metadataDir, DBUS_TYPE_INVALID); + + dbus_connection_send (connection, reply, NULL); + dbus_connection_flush (connection); + + dbus_message_unref (reply); + + return TRUE; +} + +/* * 'GetPluginMetadata' can be used to retrieve metadata for a plugin. * * Example: @@ -1943,6 +1988,15 @@ dbusHandleMessage (DBusConnection *connection,...