summaryrefslogtreecommitdiff
path: root/kernel/textwindow.c
diff options
context:
space:
mode:
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()
+{
+
+}
+