|
|
| version 1.3, 2004/02/19 11:32:11 | version 1.5, 2004/03/31 11:59:17 |
|---|---|
| Line 121 static const KEYNAME keyname[] = { | Line 121 static const KEYNAME keyname[] = { |
| {0x71, "CAPS"}, | {0x71, "CAPS"}, |
| {0x72, "KANA"}, | {0x72, "KANA"}, |
| {0x73, "GRPH"}, {0x73, "ALT"}, | {0x73, "GRPH"}, {0x73, "ALT"}, |
| {0x74, "CTRL"}}; | {0x74, "CTRL"}, |
| {0x77, "LWIN"}, | |
| {0x78, "RWIN"}, | |
| {0x79, "APP"}, | |
| {0x7d, "RSHIFT"}}; | |
| // ---- | // ---- |
| Line 139 enum { | Line 145 enum { |
| KBEX_NONREP = 0x80 | KBEX_NONREP = 0x80 |
| }; | }; |
| static const UINT8 kbexflag[0x80] = { | static const UINT8 kbexflag[NKEY_SYSTEM] = { |
| // ESC, £±, £², £³, £´, £µ, £¶, £· ; 00h | // ESC, £±, £², £³, £´, £µ, £¶, £· ; 00h |
| 0, 0, 0, 0, 0, 0, 0, 0, | 0, 0, 0, 0, 0, 0, 0, 0, |
| // £¸, £¹, £°, ¡Ý, ¡°, ¡ï, BS, TAB ; 08h | // £¸, £¹, £°, ¡Ý, ¡°, ¡ï, BS, TAB ; 08h |
| Line 170 static const UINT8 kbexflag[0x80] = { | Line 176 static const UINT8 kbexflag[0x80] = { |
| 0x80,0x80,0x80,0x80, 0, 0, 0, 0, | 0x80,0x80,0x80,0x80, 0, 0, 0, 0, |
| // SFT,CAPS,KANA,GRPH,CTRL, , , ; 70h | // SFT,CAPS,KANA,GRPH,CTRL, , , ; 70h |
| 0x80,0x80,0x80,0x80,0x80, 0, 0, 0, | 0x80,0x80,0x80,0x80,0x80, 0, 0, 0, |
| // , , , , , , , ; 78h | // , , , , ,RSFT, , ; 78h |
| 0, 0, 0, 0, 0,0x80, 0, 0, | |
| // , , , , , , , ; 80h | |
| 0, 0, 0, 0, 0, 0, 0, 0, | |
| // , , , , , , , ; 88h | |
| 0, 0, 0, 0, 0, 0, 0, 0}; | 0, 0, 0, 0, 0, 0, 0, 0}; |