summaryrefslogtreecommitdiffstats
path: root/src/device.h
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2012-08-07 16:57:55 +0200
committerPali Rohár <pali.rohar@gmail.com>2012-08-07 16:57:55 +0200
commit03eeca994daf1cbc78065de75ab182a5f3d17832 (patch)
treee6689f3a46f9ff61c39dd848e7b15947c340579a /src/device.h
parentb596e979266e71223d2e885625f1eee688dbe3d9 (diff)
download0xFFFF-03eeca994daf1cbc78065de75ab182a5f3d17832.tar.bz2
Added new files device.c and device.h
Diffstat (limited to 'src/device.h')
-rw-r--r--src/device.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/device.h b/src/device.h
new file mode 100644
index 0000000..ec43855
--- /dev/null
+++ b/src/device.h
@@ -0,0 +1,18 @@
+
+#ifndef DEVICE_H
+#define DEVICE_H
+
+enum device {
+ DEVICE_UNKNOWN = 0,
+ DEVICE_ANY, /* Unspecified / Any device */
+ DEVICE_SU_18, /* Nokia 770 */
+ DEVICE_RX_34, /* Nokia N800 */
+ DEVICE_RX_44, /* Nokia N810 */
+ DEVICE_RX_48, /* Nokia N810 WiMax */
+ DEVICE_RX_51, /* Nokia N900 */
+};
+
+enum device device_from_string(const char * device);
+const char * device_to_string(enum device device);
+
+#endif