diff options
Diffstat (limited to 'src/device.h')
-rw-r--r-- | src/device.h | 18 |
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 |