aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libgui/gui.h
blob: b056dea8b20179012bb8289bb5b569e0073e20d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef MELVIX_GUI_H
#define MELVIX_GUI_H

#include <stdint.h>

struct font {
	u16 font_32[758][32];
	u16 font_24[758][24];
	u8 font_16[758][16];
	u16 cursor[19];
};

struct pointers {
	u8 *fb;
	struct font *font;
};

struct pointers *pointers;

void gui_init();

#endif