diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-03-12 19:10:30 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-03-12 19:10:30 +0100 |
commit | 2751d53e3a810c057e0401b2a9be11bbd67a383e (patch) | |
tree | 1a57a8a0e816c8093960b3c9cc05d625db357a2b /include | |
parent | 1d01708744074320803a37388f91bc013ed2464f (diff) |
Key: support more keys, such as media keys
Diffstat (limited to 'include')
-rw-r--r-- | include/mgl/window/key.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/mgl/window/key.h b/include/mgl/window/key.h index bbcd2c2..8a51c00 100644 --- a/include/mgl/window/key.h +++ b/include/mgl/window/key.h @@ -110,6 +110,18 @@ typedef enum { MGL_KEY_PAUSE, MGL_KEY_PRINTSCREEN, MGL_KEY_NUMPAD_ENTER, + MGL_KEY_AUDIO_LOWER_VOLUME, + MGL_KEY_AUDIO_RAISE_VOLUME, + MGL_KEY_AUDIO_PLAY, + MGL_KEY_AUDIO_STOP, + MGL_KEY_AUDIO_PAUSE, + MGL_KEY_AUDIO_MUTE, + MGL_KEY_AUDIO_PREV, + MGL_KEY_AUDIO_NEXT, + MGL_KEY_AUDIO_REWIND, + MGL_KEY_AUDIO_FORWARD, + MGL_KEY_DEAD_ACUTE, + MGL_KEY_APOSTROPHE, /* This should always be the last key */ __MGL_NUM_KEYS__ |