diff options
author | Marvin Borner | 2021-05-23 23:19:26 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-23 23:19:26 +0200 |
commit | cf1a6ed2998eb22b112f233d65975c27fa5ced5b (patch) | |
tree | d78e63704219a49657c6f3029d071ce746c6f932 /libs/libgui/gui.h | |
parent | 577b4f989020be27885bcd846e3c49843aa69c08 (diff) |
Added title to app bar
Diffstat (limited to 'libs/libgui/gui.h')
-rw-r--r-- | libs/libgui/gui.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libgui/gui.h b/libs/libgui/gui.h index d9087f1..c3e1d10 100644 --- a/libs/libgui/gui.h +++ b/libs/libgui/gui.h @@ -36,8 +36,8 @@ struct gui_event_mouse { * Window operations */ -void gui_new_custom_window(u32 *id, vec2 pos, vec2 size); -void gui_new_window(u32 *id); +u32 gui_new_custom_window(const char *name, vec2 pos, vec2 size); +u32 gui_new_window(const char *name); void gui_redraw_window(u32 id); void gui_redraw_window_only(u32 id); // Without widgets |