about summary refs log tree commit diff stats
path: root/tools/iso/kernel.soso/commonuser.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/iso/kernel.soso/commonuser.h')
-rw-r--r--tools/iso/kernel.soso/commonuser.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/iso/kernel.soso/commonuser.h b/tools/iso/kernel.soso/commonuser.h
new file mode 100644
index 00000000..3a488ea8
--- /dev/null
+++ b/tools/iso/kernel.soso/commonuser.h
@@ -0,0 +1,19 @@
+#ifndef COMMONUSER_H
+#define COMMONUSER_H
+
+typedef struct SosoMessage {
+    int messageType;
+    int parameter1;
+    int parameter2;
+    int parameter3;
+} SosoMessage;
+
+typedef struct TtyUserBuffer {
+    unsigned short lineCount;
+    unsigned short columnCount;
+    unsigned short currentLine;
+    unsigned short currentColumn;
+    unsigned char* buffer;
+} TtyUserBuffer;
+
+#endif // COMMONUSER_H