Attempt to fix global hotkeys not working on steam deck (grabs keys, cant press buttons)

This commit is contained in:
dec05eba
2025-02-03 19:58:42 +01:00
parent f505323d56
commit 2a0782eb02
4 changed files with 42 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
#ifndef KEYS_H
#define KEYS_H
#include <stdbool.h>
#include <stdint.h>
bool is_key_or_mouse_button(uint32_t keycode);
bool is_mouse_button(uint32_t keycode);
#endif /* KEYS_H */