summaryrefslogtreecommitdiff
path: root/dbind/dbind-any.h
diff options
context:
space:
mode:
Diffstat (limited to 'dbind/dbind-any.h')
-rw-r--r--dbind/dbind-any.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/dbind/dbind-any.h b/dbind/dbind-any.h
new file mode 100644
index 00000000..ce6482e7
--- /dev/null
+++ b/dbind/dbind-any.h
@@ -0,0 +1,18 @@
+#ifndef _DBIND_ANY_H_
+#define _DBIND_ANY_H_
+
+#include <dbus/dbus.h>
+
+size_t dbind_gather_alloc_info (char *type);
+void dbind_any_marshal (DBusMessageIter *iter,
+ char **type,
+ void **val);
+void dbind_any_demarshal (DBusMessageIter *iter,
+ char **type,
+ void **val);
+void dbind_any_free (char *type,
+ void *ptr_to_ptr);
+void dbind_any_free_ptr (char *type,
+ void *ptr);
+
+#endif /* _DBIND_ANY_H_ */