summaryrefslogtreecommitdiff
path: root/kernel/textwindow.c
blob: 77c0cbc7ca2162b280da0c88535dec6e61807bd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#define FOOLOS_TEXTWINDOW_BUFFER_SIZE 10000
static char *buff;

void textwin_init(int x,int y,int w,int h,char *title, int r,int g, int b)
{

}

void textwin_move(int x,int y)
{

}

void textwin_resize(int w,int h)
{

}

void textwin_putchar(char c)
{

}

void textwin_putline(char *str,...)
{

}

void textwin_render()
{

}