summaryrefslogtreecommitdiff
path: root/Source/Library/Interface
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-10-20 18:10:29 +0200
committerAlexis211 <alexis211@gmail.com>2009-10-20 18:10:29 +0200
commit866580161b826443bed3862b8315cefd505de37c (patch)
tree23c3f87fe43d82c47af01c908d8a056785f9217f /Source/Library/Interface
parent0cca2d68451849b5ea96a3620566fd0b42dde3c0 (diff)
downloadMelon-866580161b826443bed3862b8315cefd505de37c.tar.gz
Melon-866580161b826443bed3862b8315cefd505de37c.zip
We now have call tables for ressources.
instead of adding calls to ressource in the constructor.
Diffstat (limited to 'Source/Library/Interface')
-rw-r--r--Source/Library/Interface/Process.iface.h8
-rw-r--r--Source/Library/Interface/Thread.iface.h6
-rw-r--r--Source/Library/Interface/VirtualTerminal.iface.h17
3 files changed, 18 insertions, 13 deletions
diff --git a/Source/Library/Interface/Process.iface.h b/Source/Library/Interface/Process.iface.h
index 0956679..fe70833 100644
--- a/Source/Library/Interface/Process.iface.h
+++ b/Source/Library/Interface/Process.iface.h
@@ -1,9 +1,9 @@
#ifndef DEF_PROCESS_IFACE_H
#define DEF_PROCESS_IFACE_H
-#define PR_IFACE_OBJTYPE 0x20
-#define PR_IFACE_EXIT 0x01
-#define PR_IFACE_ALLOCPAGE 0x02
-#define PR_IFACE_FREEPAGE 0x03
+#define PRIF_OBJTYPE 0x20
+#define PRIF_EXIT 0x01
+#define PRIF_ALLOCPAGE 0x02
+#define PRIF_FREEPAGE 0x03
#endif
diff --git a/Source/Library/Interface/Thread.iface.h b/Source/Library/Interface/Thread.iface.h
index 2a64924..ac572b4 100644
--- a/Source/Library/Interface/Thread.iface.h
+++ b/Source/Library/Interface/Thread.iface.h
@@ -1,8 +1,8 @@
#ifndef DEF_THREAD_IFACE_H
#define DEF_THREAD_IFACE_H
-#define TH_IFACE_OBJTYPE 0x21
-#define TH_IFACE_SLEEP 0x01
-#define TH_IFACE_FINISH 0x02
+#define THIF_OBJTYPE 0x21
+#define THIF_SLEEP 0x01
+#define THIF_FINISH 0x02
#endif
diff --git a/Source/Library/Interface/VirtualTerminal.iface.h b/Source/Library/Interface/VirtualTerminal.iface.h
index 1525b6c..528e9e5 100644
--- a/Source/Library/Interface/VirtualTerminal.iface.h
+++ b/Source/Library/Interface/VirtualTerminal.iface.h
@@ -1,12 +1,17 @@
#ifndef DEF_VITRUALTERMINAL_IFACE_H
#define DEF_VITRUALTERMINAL_IFACE_H
-#define VT_IFACE_OBJTYPE 0x10
-#define VT_IFACE_PUT 0x01
-#define VT_IFACE_WRITEHEX 0x02
-#define VT_IFACE_WRITEDEC 0x03
-#define VT_IFACE_WRITE 0x04
+#define VTIF_OBJTYPE 0x10
+#define VTIF_PUT 0x01
+#define VTIF_WRITEHEX 0x02
+#define VTIF_WRITEDEC 0x03
+#define VTIF_WRITE 0x04
-#define VT_IFACE_READLINE 0x05
+#define VTIF_READLINE 0x05
+
+#define VTIF_SETCOLOR 0x10
+#define VTIF_SETCSRLINE 0x11
+#define VTIF_SETCSRCOL 0x12
+#define VTIF_ISBOXED 0x13
#endif