diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2026-01-02 11:18:48 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2026-01-02 11:18:48 +0000 |
| commit | 006681ec2240d46b977f04ab7d7c8e280ad2cb67 (patch) | |
| tree | ed90a4ddc56ffe415924e81fd0f04daddb8333a4 /core/sys/windows/key_codes.odin | |
| parent | b86627ba3725b5cdf4b7ac0a4cb7f17f2eab08fb (diff) | |
Improve formatting; fix types; add struct field tags
Diffstat (limited to 'core/sys/windows/key_codes.odin')
| -rw-r--r-- | core/sys/windows/key_codes.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/sys/windows/key_codes.odin b/core/sys/windows/key_codes.odin index 0991ca4b3..a2910ecd1 100644 --- a/core/sys/windows/key_codes.odin +++ b/core/sys/windows/key_codes.odin @@ -3,11 +3,11 @@ package sys_windows // https://docs.microsoft.com/en-us/windows/win32/inputdev/about-keyboard-input KF_EXTENDED :: 0x0100 -KF_DLGMODE :: 0x0800 +KF_DLGMODE :: 0x0800 KF_MENUMODE :: 0x1000 -KF_ALTDOWN :: 0x2000 -KF_REPEAT :: 0x4000 -KF_UP :: 0x8000 +KF_ALTDOWN :: 0x2000 +KF_REPEAT :: 0x4000 +KF_UP :: 0x8000 // https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes // Virtual Keys, Standard Set |