From 93ea539c14e4029ca66757cbfeac3fdcda8f3f70 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Fri, 29 Nov 2019 14:10:04 +0900 Subject: [PATCH] Include corax/types.h from corax/ipc.h --- include/corax/ipc.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/corax/ipc.h b/include/corax/ipc.h index 4cc3291..8d9d423 100644 --- a/include/corax/ipc.h +++ b/include/corax/ipc.h @@ -1,11 +1,20 @@ #ifndef __CORAX_IPC_H #define __CORAX_IPC_H +#include + #define CX_MSG_RETVAL 0 #define CX_MSG_READ 1 #define CX_MSG_WRITE 2 #define CX_MSG_FLUSH 3 +#define CX_OPEN 0 +#define CX_CLOSE 1 +#define CX_READ 2 +#define CX_WRITE 3 +#define CX_FCNTL 4 +#define CX_IOCTL 5 + struct cxmsg_data_stdio { int sio_fd; char sio_data[]; -- 2.47.3