aboutsummaryrefslogtreecommitdiff
path: root/src/resource-glue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resource-glue.h')
-rw-r--r--src/resource-glue.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/resource-glue.h b/src/resource-glue.h
new file mode 100644
index 0000000..4e668c2
--- /dev/null
+++ b/src/resource-glue.h
@@ -0,0 +1,20 @@
+#ifndef __LIB_RESOURCE_GLUE_H__
+#define __LIB_RESOURCE_GLUE_H__
+
+#include <stdint.h>
+
+#include <res-conn.h>
+
+DBusConnection *resource_get_dbus_bus(DBusBusType, DBusError *);
+void *resource_timer_add(uint32_t, resconn_timercb_t,void *);
+void resource_timer_del(void *);
+
+#endif /* __LIB_RESOURCE_GLUE_H__ */
+
+/*
+ * Local Variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim:set expandtab shiftwidth=4:
+ */