X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=src%2Fwindows.h;h=7714c6cfa29050390dd4953f29fe9f6bbf0d575a;hb=4f77793bb350ebab5b6703ba1e25fe822068d00d;hp=a597ebb3bb975d6719a87b56afa90546f89017fc;hpb=64e1bc2a874308530b7b45c33ed5d37f34f5f8be;p=plomrogue diff --git a/src/windows.h b/src/windows.h index a597ebb..7714c6c 100644 --- a/src/windows.h +++ b/src/windows.h @@ -1,3 +1,8 @@ +#ifndef WINDOWS_H +#define WINDOWS_H + +#include +#include #include "yx_uint16.h" struct Frame { @@ -27,7 +32,9 @@ 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); + +#endif