X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=windows.h;h=b5df4981e98fe13a7d9f3cc9ed2e19e44692c02b;hb=122747fbbdc061942de2fc2bca901a44a6b4ab61;hp=779a672ec0f1348016b13ccab09c5d7c42307bc8;hpb=a068b574ce8ac851be5ca1aefbaa487ef6c8e60e;p=plomrogue diff --git a/windows.h b/windows.h index 779a672..b5df498 100644 --- a/windows.h +++ b/windows.h @@ -29,7 +29,8 @@ struct Corners { struct yx br; }; struct WinMeta init_win_meta (WINDOW *); -struct Win init_window (struct WinMeta *, char *); +void scroll_pad (struct WinMeta *, char); +struct Win init_window (struct WinMeta *, char *, void *, void *); void append_window (struct WinMeta *, struct Win *); void suspend_window (struct WinMeta *, struct Win *); struct yx place_window (struct WinMeta *, struct Win *); @@ -39,6 +40,6 @@ void draw_windows (struct Win *); void draw_windows_borders (struct Win *, struct Win *, struct Corners *, int); void draw_window_borders (struct Win *, char); void draw_all_windows (struct WinMeta *); -void resize_window (struct WinMeta *, char); +void resize_active_window (struct WinMeta *, int, int); void cycle_active_window (struct WinMeta *, char); -void shift_window (struct WinMeta *, char); +void shift_active_window (struct WinMeta *, char);