author | schurig <schurig> | 2004-09-09 09:08:51 (UTC) |
---|---|---|
committer | schurig <schurig> | 2004-09-09 09:08:51 (UTC) |
commit | 57549dc20fdaf0c5d7784d2adbbbdc8dfebb70fa (patch) (side-by-side diff) | |
tree | 864f23b263a035a92e424daf4e352cffe2484ada /libopie2 | |
parent | 8df28401db620a01144ca45988837583f55e15c3 (diff) | |
download | opie-57549dc20fdaf0c5d7784d2adbbbdc8dfebb70fa.zip opie-57549dc20fdaf0c5d7784d2adbbbdc8dfebb70fa.tar.gz opie-57549dc20fdaf0c5d7784d2adbbbdc8dfebb70fa.tar.bz2 |
added MNCI-RX
-rw-r--r-- | libopie2/opiecore/device/odevice.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libopie2/opiecore/device/odevice.h b/libopie2/opiecore/device/odevice.h index f4b3e0e..6f0d036 100644 --- a/libopie2/opiecore/device/odevice.h +++ b/libopie2/opiecore/device/odevice.h @@ -93,6 +93,7 @@ enum OModel { Model_Ramses_All = ( Model_Ramses | 0xffffff ), Model_Ramses_MNCI = ( Model_Ramses | 0x000001 ), + Model_Ramses_MNCIRX = ( Model_Ramses | 0x000002 ), Model_Yopy = ( 5 << 24 ), @@ -261,7 +262,7 @@ public: // don't add new virtual methods, use this: // /*virtual */ void boo(int i ) { return virtual_hook(1,&i); }; - // and in your subclass do do overwrite + // and in your subclass do overwrite // protected virtual int virtual_hook(int, void *) // which is defined below |