summaryrefslogtreecommitdiffstats
path: root/src/device.h
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2012-08-08 18:10:53 +0200
committerPali Rohár <pali.rohar@gmail.com>2012-08-08 18:10:53 +0200
commitb5828692080d87255f5b12424cc205654f0240b2 (patch)
tree27af833aaad9d9d675247d8c35bb8c1549e8fc64 /src/device.h
parentdd2c6b7f18fc4a26c950e09c47af76eeb894cd68 (diff)
download0xFFFF-b5828692080d87255f5b12424cc205654f0240b2.tar.bz2
Added enum DEVICE_COUNT and IMAGE_COUNT, Added function device_to_long_string
Diffstat (limited to 'src/device.h')
-rw-r--r--src/device.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/device.h b/src/device.h
index 4b69f1e..0410494 100644
--- a/src/device.h
+++ b/src/device.h
@@ -28,9 +28,11 @@ enum device {
DEVICE_RX_44, /* Nokia N810 */
DEVICE_RX_48, /* Nokia N810 WiMax */
DEVICE_RX_51, /* Nokia N900 */
+ DEVICE_COUNT,
};
enum device device_from_string(const char * device);
const char * device_to_string(enum device device);
+const char * device_to_long_string(enum device device);
#endif