X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fwindows.h;h=7714c6cfa29050390dd4953f29fe9f6bbf0d575a;hb=714bf970109b33005e0ab3e588d818460ccdc304;hp=53f1559facfad148de8d53934e5e2a794c625783;hpb=f222ace2f2441b21a3c29741483d8018294820a4;p=plomrogue diff --git a/src/windows.h b/src/windows.h index 53f1559..7714c6c 100644 --- a/src/windows.h +++ b/src/windows.h @@ -1,6 +1,8 @@ #ifndef WINDOWS_H #define WINDOWS_H +#include +#include #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);