aboutsummaryrefslogtreecommitdiffstats
path: root/src/ipc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipc.h')
-rw-r--r--src/ipc.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/ipc.h b/src/ipc.h
index 2713de7..1820511 100644
--- a/src/ipc.h
+++ b/src/ipc.h
@@ -12,6 +12,9 @@
/*
* $Log$
+ * Revision 1.4 2008/02/22 17:07:00 james
+ * *** empty log message ***
+ *
* Revision 1.3 2008/02/15 23:52:12 james
* *** empty log message ***
*
@@ -30,15 +33,16 @@
#define IPC_MSG_TYPE_NOOP 0
#define IPC_MSG_TYPE_DEBUG 1
-#define IPC_MSG_TYPE_HISTORY 2
-#define IPC_MSG_TYPE_VT102 3
+#define IPC_MSG_TYPE_VT102 2
+#define IPC_MSG_TYPE_HISTORY 3
#define IPC_MSG_TYPE_KEY 4
#define IPC_MSG_TYPE_TERM 5
#define IPC_MSG_TYPE_STATUS 6
#define IPC_MSG_TYPE_SETBAUD 7
#define IPC_MSG_TYPE_SENDBREAK 8
#define IPC_MSG_TYPE_SETFLOW 9
-#define IPC_MSG_TYPE_HANGUP 10
+#define IPC_MSG_TYPE_SETANSI 10
+#define IPC_MSG_TYPE_HANGUP 11
typedef struct
{
@@ -128,6 +132,14 @@ typedef struct
{
int32_t size;
int32_t type;
+ int32_t ansi;
+} IPC_Msg_setansi;
+
+
+typedef struct
+{
+ int32_t size;
+ int32_t type;
} IPC_Msg_hangup;
@@ -145,6 +157,7 @@ IPC_Msg_status status;
IPC_Msg_setbaud setbaud;
IPC_Msg_sendbreak sendbreak;
IPC_Msg_setflow setflow;
+IPC_Msg_setansi setansi;
IPC_Msg_hangup hangup;
} IPC_Msg;