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

#ifndef GUI_H
#define GUI_H

#include <def.h>
#include <gfx.h>

struct gui_window {
	u32 id;
	struct context ctx;
};

s32 gui_new_window(struct gui_window *win);
s32 gui_redraw_window(u32 id);

#endif