author | kergoth <kergoth> | 2002-12-12 00:28:48 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-12-12 00:28:48 (UTC) |
commit | cb783a8ddbeb6c85481c5b1a807f21be83817255 (patch) (side-by-side diff) | |
tree | ba7823d58f7cf34d8fffd5818ea5e1ff72432182 /libopie/odevice.h | |
parent | 474b8efcacfffb04bf72f486eca7b1455a2b81dd (diff) | |
download | opie-cb783a8ddbeb6c85481c5b1a807f21be83817255.zip opie-cb783a8ddbeb6c85481c5b1a807f21be83817255.tar.gz opie-cb783a8ddbeb6c85481c5b1a807f21be83817255.tar.bz2 |
Proper zaurus model checking for ODevice
-rw-r--r-- | libopie/odevice.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libopie/odevice.h b/libopie/odevice.h index e50009c..86491d4 100644 --- a/libopie/odevice.h +++ b/libopie/odevice.h @@ -23,48 +23,49 @@ #include <qstring.h> #include <qnamespace.h> class ODeviceData; namespace Opie { enum OModel { Model_Unknown, Model_Series_Mask = 0xff000000, Model_iPAQ = ( 1 << 24 ), Model_iPAQ_All = ( Model_iPAQ | 0xffffff ), Model_iPAQ_H31xx = ( Model_iPAQ | 0x000001 ), Model_iPAQ_H36xx = ( Model_iPAQ | 0x000002 ), Model_iPAQ_H37xx = ( Model_iPAQ | 0x000004 ), Model_iPAQ_H38xx = ( Model_iPAQ | 0x000008 ), Model_iPAQ_H39xx = ( Model_iPAQ | 0x000010 ), Model_Zaurus = ( 2 << 24 ), Model_Zaurus_SL5000 = ( Model_Zaurus | 0x000001 ), + Model_Zaurus_SL5500 = ( Model_Zaurus | 0x000002 ), }; enum OVendor { Vendor_Unknown, Vendor_HP, Vendor_Sharp }; enum OSystem { System_Unknown, System_Familiar, System_Zaurus, System_OpenZaurus }; enum OLedState { Led_Off, Led_On, Led_BlinkSlow, Led_BlinkFast }; |