aboutsummaryrefslogtreecommitdiff
path: root/libs/libgui/gui.h
blob: a3f74f8f89aeb98bf01fd1c794e74b20fa519c83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// MIT License, Copyright (c) 2021 Marvin Borner

#ifndef GUI_H
#define GUI_H

#include <def.h>
#include <errno.h>

res gui_new_window(void);
res gui_redraw_window(u32 id);
void gui_loop(void);

#endif