Home
last modified time | relevance | path

Searched refs:gafAsyncKeyStateRecentDown (Results 1 – 1 of 1) sorted by relevance

/reactos/win32ss/user/ntuser/
H A Dkeyboard.c14 static BYTE gafAsyncKeyStateRecentDown[256 / 8]; // 1 bit per key variable
36 RtlZeroMemory(&gafAsyncKeyStateRecentDown, sizeof(gafAsyncKeyStateRecentDown)); in InitKeyboardImpl()
651 if (gafAsyncKeyStateRecentDown[Key / 8] & (1 << (Key % 8))) in NtUserGetAsyncKeyState()
653 gafAsyncKeyStateRecentDown[Key / 8] &= ~(1 << (Key % 8)); in NtUserGetAsyncKeyState()
677 gafAsyncKeyStateRecentDown[wVk / 8] |= (1 << (wVk % 8)); in UpdateAsyncKeyState()