| 435 | } |
| 436 | |
| 437 | BYTE KeybReadFlag (void) |
| 438 | { |
| 439 | _ASSERT(!IS_APPLE2); // And also not Pravets machines? |
| 440 | |
| 441 | BYTE res = KeybClearStrobe(); |
| 442 | if (res) |
| 443 | return res; |
| 444 | |
| 445 | // AKD |
| 446 | |
| 447 | return keycode | (IsAKD() ? 0x80 : 0); |
| 448 | } |
| 449 | |
| 450 | //=========================================================================== |
| 451 | void KeybToggleCapsLock () |
no test coverage detected