diff options
author | chai <chaifix@163.com> | 2020-02-26 22:52:19 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2020-02-26 22:52:19 +0800 |
commit | 372d77e436d21312ef1a0df622964751716963a3 (patch) | |
tree | 1a71865fea6fb9f2f532422c4b83959fff17ea76 /src/extern/wog.c | |
parent | 27687536844ed3b045bba1abd1aae8bb3692f6cb (diff) |
*misc
Diffstat (limited to 'src/extern/wog.c')
-rw-r--r-- | src/extern/wog.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/extern/wog.c b/src/extern/wog.c index 04a84c7..0578439 100644 --- a/src/extern/wog.c +++ b/src/extern/wog.c @@ -86,7 +86,8 @@ void wog_handleEvent(wog_Window* window, MSG* msg, wog_Event* e) return ; } - case WM_KEYDOWN: + case WM_KEYDOWN: + case WM_SYSKEYDOWN: if ((wParam >= 0) && (wParam <= 255)) { zero_mem(e, sizeof(wog_Event)); @@ -98,6 +99,7 @@ void wog_handleEvent(wog_Window* window, MSG* msg, wog_Event* e) break; case WM_KEYUP: + case WM_SYSKEYUP: if ((wParam >= 0) && (wParam <= 255)) { zero_mem(e, sizeof(wog_Event)); |