Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
705e7d70
Commit
705e7d70
authored
Jul 17, 2001
by
Ove Kaaven
Committed by
Alexandre Julliard
Jul 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added STATUS_* constant for named pipes. Return STATUS_PIPE_NOT_AVAILABLE
when opening a named pipe if the pipe exists but no instances of it are currently waiting for a connection.
parent
5f258c68
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
winnt.h
include/winnt.h
+11
-1
named_pipe.c
server/named_pipe.c
+1
-1
No files found.
include/winnt.h
View file @
705e7d70
...
...
@@ -1629,7 +1629,17 @@ __DEFINE_SET_SEG(gs)
#define STATUS_INTEGER_DIVIDE_BY_ZERO 0xC0000094
#define STATUS_INTEGER_OVERFLOW 0xC0000095
#define STATUS_PRIVILEGED_INSTRUCTION 0xC0000096
#define STATUS_MEDIA_WRITE_PROTECTED 0XC00000A2
#define STATUS_MEDIA_WRITE_PROTECTED 0xC00000A2
#define STATUS_INSTANCE_NOT_AVAILABLE 0xC00000AB
#define STATUS_PIPE_NOT_AVAILABLE 0xC00000AC
#define STATUS_INVALID_PIPE_STATE 0xC00000AD
#define STATUS_PIPE_BUSY 0xC00000AE
#define STATUS_ILLEGAL_FUNCTION 0xC00000AF
#define STATUS_PIPE_DISCONNECTED 0xC00000B0
#define STATUS_PIPE_CLOSING 0xC00000B1
#define STATUS_PIPE_CONNECTED 0xC00000B2
#define STATUS_PIPE_LISTENING 0xC00000B3
#define STATUS_INVALID_READ_MODE 0xC00000B4
#define STATUS_INVALID_PARAMETER_2 0xC00000F0
#define STATUS_STACK_OVERFLOW 0xC00000FD
#define STATUS_DIRECTORY_NOT_EMPTY 0xC0000101
...
...
server/named_pipe.c
View file @
705e7d70
...
...
@@ -264,7 +264,7 @@ DECL_HANDLER(open_named_pipe)
release_object
(
partner
);
}
else
{
set_error
(
STATUS_
NO_SUCH_FI
LE
);
set_error
(
STATUS_
PIPE_NOT_AVAILAB
LE
);
}
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment