about summary refs log tree commit diff stats
path: root/kernel.soso/framebuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel.soso/framebuffer.h')
-rw-r--r--kernel.soso/framebuffer.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/kernel.soso/framebuffer.h b/kernel.soso/framebuffer.h
new file mode 100644
index 00000000..78575ebb
--- /dev/null
+++ b/kernel.soso/framebuffer.h
@@ -0,0 +1,15 @@
+#ifndef FRAMEBUFFER_H
+#define FRAMEBUFFER_H
+
+#include "common.h"
+
+enum EnFrameBuferIoctl
+{
+    FB_GET_WIDTH,
+    FB_GET_HEIGHT,
+    FB_GET_BITSPERPIXEL
+};
+
+void initializeFrameBuffer(uint8* p_address, uint8* v_address);
+
+#endif // FRAMEBUFFER_H