2024-08-12 23:22:51 -04:00
|
|
|
#ifndef VANILLA_PIPE_DEF_H
|
|
|
|
#define VANILLA_PIPE_DEF_H
|
|
|
|
|
|
|
|
#define VANILLA_PIPE_CMD_SERVER_PORT 51000
|
|
|
|
#define VANILLA_PIPE_CMD_CLIENT_PORT 51001
|
2024-09-18 14:57:38 -04:00
|
|
|
#define VANILLA_PIPE_CC_SYNC 0x56530000
|
|
|
|
#define VANILLA_PIPE_CC_CONNECT 0x56414249
|
2024-08-12 23:22:51 -04:00
|
|
|
#define VANILLA_PIPE_CC_BIND_ACK 0x56414245
|
2024-09-18 14:57:38 -04:00
|
|
|
#define VANILLA_PIPE_CC_SYNC_STATUS 0x53595300
|
|
|
|
#define VANILLA_PIPE_CC_BUSY 0x56414255
|
2024-08-12 23:22:51 -04:00
|
|
|
#define VANILLA_PIPE_CC_UNBIND 0x5641554E
|
|
|
|
|
2024-09-18 14:57:38 -04:00
|
|
|
#define VANILLA_PIPE_SYNC_CODE(x) (VANILLA_PIPE_CC_SYNC | (x & 0xFFFF))
|
|
|
|
|
2024-08-12 23:22:51 -04:00
|
|
|
#endif // VANILLA_PIPE_DEF_H
|