From: Matthias Kruk Date: Fri, 29 Nov 2019 05:10:04 +0000 (+0900) Subject: Include corax/types.h from corax/ipc.h X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=93ea539c14e4029ca66757cbfeac3fdcda8f3f70;p=corax Include corax/types.h from corax/ipc.h --- 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[];