===========================================================================
| 102 | |
| 103 | //=========================================================================== |
| 104 | void KeybUpdateCtrlShiftStatus() |
| 105 | { |
| 106 | g_bAltKey = (GetKeyState( VK_MENU ) < 0) ? true : false; // L or R alt |
| 107 | g_bCtrlKey = (GetKeyState( VK_CONTROL) < 0) ? true : false; // L or R ctrl |
| 108 | g_bShiftKey = (GetKeyState( VK_SHIFT ) < 0) ? true : false; // L or R shift |
| 109 | } |
| 110 | |
| 111 | //=========================================================================== |
| 112 | BYTE KeybGetKeycode () // Used by IORead_C01x() and TapeRead() for Pravets8A |
no outgoing calls
no test coverage detected