X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=windows.h;h=8f06ffc38c85be20bf6681bb181ce2c72ee9291f;hb=891ff33aec8906fe8203910a26c56650ce74b904;hp=779a672ec0f1348016b13ccab09c5d7c42307bc8;hpb=a068b574ce8ac851be5ca1aefbaa487ef6c8e60e;p=plomrogue diff --git a/windows.h b/windows.h index 779a672..8f06ffc 100644 --- a/windows.h +++ b/windows.h @@ -29,6 +29,7 @@ struct Corners { struct yx br; }; struct WinMeta init_win_meta (WINDOW *); +void scroll_pad (struct WinMeta *, char); struct Win init_window (struct WinMeta *, char *); void append_window (struct WinMeta *, struct Win *); void suspend_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);