aboutsummaryrefslogtreecommitdiff
path: root/systray/helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'systray/helpers.h')
-rw-r--r--systray/helpers.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/systray/helpers.h b/systray/helpers.h
new file mode 100644
index 0000000..2c592e0
--- /dev/null
+++ b/systray/helpers.h
@@ -0,0 +1,12 @@
+#ifndef HELPERS_H
+#define HELPERS_H
+
+#include <dbus/dbus.h>
+
+typedef void (*PropHandler)(DBusPendingCall *pcall, void *data);
+
+int request_property (DBusConnection *conn, const char *busname,
+ const char *busobj, const char *prop, const char *iface,
+ PropHandler handler, void *data);
+
+#endif /* HELPERS_H */