home · contact · privacy
Rewrote update_log () for a comeback of the message repition compression feature...
[plomrogue] / src / keybindings.h
index b0ff912944040920edfe6ee022c27d51c4e99f43..ad8b3bb36be853e17d109b7a8e7f22574c0a3f67 100644 (file)
@@ -1,3 +1,11 @@
+#ifndef KEYBINDINGS_H
+#define KEYBINDINGS_H
+
+#include <stdint.h>
+
+struct World;
+struct WinMeta;
+
 struct KeyBinding {
   char * name;
   uint16_t key; };
@@ -13,3 +21,5 @@ uint16_t get_action_key (struct KeyBinding *, char *);
 char * get_keyname(uint16_t);
 void keyswin_mod_key (struct World *, struct WinMeta *);
 void keyswin_move_selection (struct World *, char);
+
+#endif