summaryrefslogtreecommitdiffstats
path: root/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'window.h')
-rw-r--r--window.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/window.h b/window.h
index d9413e0..cc2598f 100644
--- a/window.h
+++ b/window.h
@@ -56,14 +56,15 @@ typedef struct win_s {
void win_open(win_t*);
void win_close(win_t*);
-void win_set_title(win_t*, const char*);
-
int win_configure(win_t*, XConfigureEvent*);
+int win_resize(win_t*, unsigned int, unsigned int);
+
void win_toggle_fullscreen(win_t*);
void win_clear(win_t*);
void win_draw(win_t*);
+void win_set_title(win_t*, const char*);
void win_set_cursor(win_t*, win_cur_t);
#endif /* WINDOW_H */