summaryrefslogtreecommitdiff
path: root/kernel/textwindow.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-08-27 15:56:52 +0200
committerMichal Idziorek <m.i@gmx.at>2014-08-27 15:56:52 +0200
commitd85b6209f37b4d886f9e85fd9592c9d7cf25deb9 (patch)
tree83219e5d9ed5571ef20c8bf7bce21d595f3fcedc /kernel/textwindow.c
parent62c211ade1606d82f9b262b68ef074ae07e26184 (diff)
further cleanup of bootloader
Diffstat (limited to 'kernel/textwindow.c')
-rw-r--r--kernel/textwindow.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/kernel/textwindow.c b/kernel/textwindow.c
new file mode 100644
index 0000000..77c0cbc
--- /dev/null
+++ b/kernel/textwindow.c
@@ -0,0 +1,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()
+{
+
+}
+