about summary refs log tree commit diff stats
path: root/kernel.soso/screen.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel.soso/screen.h')
-rw-r--r--kernel.soso/screen.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/kernel.soso/screen.h b/kernel.soso/screen.h
new file mode 100644
index 00000000..ab3e9b88
--- /dev/null
+++ b/kernel.soso/screen.h
@@ -0,0 +1,16 @@
+#ifndef SCREEN_H
+#define SCREEN_H
+
+#include "common.h"
+#include "tty.h"
+
+void Screen_FlushFromTty(Tty* tty);
+void Screen_Print(int row, int column, const char* text);
+void Screen_SetActiveColor(uint8 color);
+void Screen_ApplyColor(uint8 color);
+void Screen_Clear();
+void Screen_SetCursorVisible(BOOL visible);
+void Screen_MoveCursor(uint16 line, uint16 column);
+void Screen_GetCursor(uint16* line, uint16* column);
+
+#endif //SCREEN_H