From: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> --- include/winbase.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/include/winbase.h b/include/winbase.h index 40d973dd546..c3268b6e749 100644 --- a/include/winbase.h +++ b/include/winbase.h @@ -907,13 +907,15 @@ typedef struct _FILE_REMOTE_PROTOCOL_INFO { #define PIPE_CLIENT_END 0 #define PIPE_SERVER_END 1 -#define PIPE_READMODE_BYTE 0 -#define PIPE_READMODE_MESSAGE 2 -#define PIPE_TYPE_BYTE 0 -#define PIPE_TYPE_MESSAGE 4 -#define PIPE_WAIT 0 -#define PIPE_NOWAIT 1 +#define PIPE_WAIT 0x00000000 +#define PIPE_NOWAIT 0x00000001 +#define PIPE_READMODE_BYTE 0x00000000 +#define PIPE_READMODE_MESSAGE 0x00000002 +#define PIPE_TYPE_BYTE 0x00000000 +#define PIPE_TYPE_MESSAGE 0x00000004 +#define PIPE_ACCEPT_REMOTE_CLIENTS 0x00000000 +#define PIPE_REJECT_REMOTE_CLIENTS 0x00000008 #define PIPE_UNLIMITED_INSTANCES 255 -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7477