aboutsummaryrefslogtreecommitdiffstats
path: root/src/ipc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipc.h')
-rw-r--r--src/ipc.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ipc.h b/src/ipc.h
index d36dcfd..9b2f438 100644
--- a/src/ipc.h
+++ b/src/ipc.h
@@ -12,6 +12,9 @@
/*
* $Log$
+ * Revision 1.11 2008/03/07 14:13:40 james
+ * *** empty log message ***
+ *
* Revision 1.10 2008/03/07 13:16:02 james
* *** empty log message ***
*
@@ -64,6 +67,7 @@
#define IPC_MSG_TYPE_HANGUP 12
#define IPC_MSG_TYPE_SETSIZE 13
#define IPC_MSG_TYPE_RESET 14
+#define IPC_MSG_TYPE_KILLME 15
typedef struct
{
@@ -186,6 +190,13 @@ typedef struct
} IPC_Msg_reset;
+typedef struct
+{
+ int32_t size;
+ int32_t type;
+} IPC_Msg_killme;
+
+
typedef union
{
@@ -205,6 +216,7 @@ typedef union
IPC_Msg_hangup hangup;
IPC_Msg_setsize setsize;
IPC_Msg_reset reset;
+ IPC_Msg_killme killme;
} IPC_Msg;