aboutsummaryrefslogtreecommitdiff
path: root/src/resource-glue.h
diff options
context:
space:
mode:
authorJanos Kovacs <janos.f.kovacs@nokia.com>2010-02-05 05:53:51 +0200
committerJanos Kovacs <janos.f.kovacs@nokia.com>2010-02-05 05:53:51 +0200
commit1120e7ec07197225043e3e718c4c5ef867beec25 (patch)
treecd840feb33c7fa16a9a35eaa30b721aa79460570 /src/resource-glue.h
parent56af9beb47bdb9f4b8958863c4001506a54db9ff (diff)
- high level C API with glib bindings
- example fmradio
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:
+ */