summaryrefslogtreecommitdiffstats
path: root/common/hal.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2007-03-21 14:24:15 +0000
committerMarcel Holtmann <marcel@holtmann.org>2007-03-21 14:24:15 +0000
commit833ce8edc2b4cde819a2aa7efb8e562958c48acd (patch)
treee48df90df6d0e8cb059036e65c908b9de53f93ed /common/hal.h
parentad5740f56965f3fc003b704fe41e80fe1e53434d (diff)
Implement generic HAL device helpers
Diffstat (limited to 'common/hal.h')
-rw-r--r--common/hal.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/common/hal.h b/common/hal.h
index 5ff86a8a..f2afacad 100644
--- a/common/hal.h
+++ b/common/hal.h
@@ -25,3 +25,10 @@
int hal_init(DBusConnection *conn);
void hal_cleanup(void);
+
+struct hal_device {
+ char *udi;
+ char uuid[37];
+};
+
+int hal_add_device(struct hal_device *);