diff options
author | papush! | 2025-07-04 23:21:14 +0200 |
---|---|---|
committer | papush! | 2025-07-04 23:25:07 +0200 |
commit | 0d1f4776521b286cb7c0091ac5bcd659cdc87132 (patch) | |
tree | 5b04bd12c45f6f30c34356241616496c5cb025e2 /src/bindings_file.h | |
parent | ff5e9f826d6e89f5ab1adb09e959afd5d1e17a5f (diff) |
add multikey binds support
Diffstat (limited to 'src/bindings_file.h')
-rw-r--r-- | src/bindings_file.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/bindings_file.h b/src/bindings_file.h new file mode 100644 index 0000000..a7d1791 --- /dev/null +++ b/src/bindings_file.h @@ -0,0 +1,13 @@ +#ifndef BINDINGS_FILE_H +#define BINDINGS_FILE_H + +#include <stddef.h> + + +extern struct binding *bindings; +extern size_t nbindings; + +void parse_bindings_file(const char path[static 1]); + + +#endif
\ No newline at end of file |