X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=windows.h;h=b5df4981e98fe13a7d9f3cc9ed2e19e44692c02b;hb=122747fbbdc061942de2fc2bca901a44a6b4ab61;hp=23fbdc1f59ac42f829fe9ecbdba3cc8cefd6f86d;hpb=ed160c85898e726c7daf6b329f5e807e760ba3ed;p=plomrogue diff --git a/windows.h b/windows.h index 23fbdc1..b5df498 100644 --- a/windows.h +++ b/windows.h @@ -30,7 +30,7 @@ struct Corners { struct WinMeta init_win_meta (WINDOW *); void scroll_pad (struct WinMeta *, char); -struct Win init_window (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 *); @@ -40,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);