19 lines
363 B
C
19 lines
363 B
C
#ifndef SHARE_SYSDEFS_IPCPIPE_H_
|
|
#define SHARE_SYSDEFS_IPCPIPE_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#define IPCPIPE_SELFPID (-1)
|
|
|
|
#define IPCPIPE_OUT (0)
|
|
#define IPCPIPE_IN (1)
|
|
|
|
#define IPCPIPE_MAKE 0
|
|
#define IPCPIPE_READ 1
|
|
#define IPCPIPE_WRITE 2
|
|
#define IPCPIPE_REPLACE 4
|
|
#define IPCPIPE_DELETE 5
|
|
|
|
#endif // SHARE_SYSDEFS_IPCPIPE_H_
|