Displaying 1 result from an estimated 1 matches for "homeplugindir".
Did you mean:
home_plugindir
2007 May 17
0
[PATCH] Add getCoreInfo function
...+ * /org/freedesktop/compiz \
+ * org.freedesktop.compiz.getCoreInfo
+ */
+static Bool
+dbusHandleGetCoreInfoMessage (DBusConnection *connection,
+ DBusMessage *message,
+ CompDisplay *d)
+{
+ DBusMessage *reply;
+ const char *pluginDir = PLUGINDIR;
+ const char *homePluginDir = HOME_PLUGINDIR;
+ const char *metadataDir = METADATADIR;
+ int version = ABIVERSION;
+
+ reply = dbus_message_new_method_return (message);
+
+ dbus_message_append_args (reply, DBUS_TYPE_STRING, &programName, DBUS_TYPE_INVALID);
+ dbus_message_append_args (reply, DBUS_TYPE_INT32...