mirror of
https://github.com/vanilla-wiiu/vanilla.git
synced 2025-01-22 08:11:47 -05:00
15 lines
No EOL
499 B
C
15 lines
No EOL
499 B
C
#ifndef VANILLA_PIPE_DEF_H
|
|
#define VANILLA_PIPE_DEF_H
|
|
|
|
#define VANILLA_PIPE_CMD_SERVER_PORT 51000
|
|
#define VANILLA_PIPE_CMD_CLIENT_PORT 51001
|
|
#define VANILLA_PIPE_CC_SYNC 0x56530000
|
|
#define VANILLA_PIPE_CC_CONNECT 0x56414249
|
|
#define VANILLA_PIPE_CC_BIND_ACK 0x56414245
|
|
#define VANILLA_PIPE_CC_SYNC_STATUS 0x53595300
|
|
#define VANILLA_PIPE_CC_BUSY 0x56414255
|
|
#define VANILLA_PIPE_CC_UNBIND 0x5641554E
|
|
|
|
#define VANILLA_PIPE_SYNC_CODE(x) (VANILLA_PIPE_CC_SYNC | (x & 0xFFFF))
|
|
|
|
#endif // VANILLA_PIPE_DEF_H
|