home · contact · privacy
Added command to focus map on player.
[plomrogue] / src / windows.h
index 53f1559facfad148de8d53934e5e2a794c625783..7714c6cfa29050390dd4953f29fe9f6bbf0d575a 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef WINDOWS_H
 #define WINDOWS_H
 
+#include <stdint.h>
+#include <ncurses.h>
 #include "yx_uint16.h"
 
 struct Frame {
@@ -30,7 +32,7 @@ extern void append_win (struct WinMeta *, struct Win *);
 extern void suspend_win (struct WinMeta *, struct Win *);
 extern void draw_scroll_hint (struct Frame *, uint16_t, uint32_t, char);
 extern void draw_all_wins (struct WinMeta *);
-extern void resize_active_win (struct WinMeta *, uint16_t, uint16_t);
+extern void resize_active_win (struct WinMeta *, struct yx_uint16);
 extern void cycle_active_win (struct WinMeta *, char);
 extern void shift_active_win (struct WinMeta *, char);
 extern void reset_pad_offset (struct WinMeta *, uint16_t);