blob: 11d0d9218134ae1b52cd508bfd0a75e1b8d091aa (
plain)
1
2
3
4
5
6
7
8
9
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 */
|