Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
45459a55
Commit
45459a55
authored
Dec 18, 1998
by
Juergen Schmied
Committed by
Alexandre Julliard
Dec 18, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for WaitNamedPipe[A|W].
parent
a03f0641
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
4 deletions
+22
-4
winerror.h
include/winerror.h
+4
-0
kernel32.spec
relay32/kernel32.spec
+2
-2
kernel32.c
win32/kernel32.c
+16
-2
No files found.
include/winerror.h
View file @
45459a55
...
...
@@ -109,6 +109,10 @@ extern int WIN32_LastError;
#define ERROR_BAD_EXE_FORMAT 193
#define ERROR_FILENAME_EXCED_RANGE 206
#define ERROR_META_EXPANSION_TOO_LONG 208
#define ERROR_BAD_PIPE 230
#define ERROR_PIPE_BUSY 231
#define ERROR_NO_DATA 232
#define ERROR_PIPE_NOT_CONNECTED 233
#define ERROR_MORE_DATA 234
#define ERROR_NO_MORE_ITEMS 259
#define ERROR_DIRECTORY 267
...
...
relay32/kernel32.spec
View file @
45459a55
...
...
@@ -741,8 +741,8 @@ init MAIN_KernelInit
722 stdcall WaitForMultipleObjectsEx(long ptr long long long) WaitForMultipleObjectsEx
723 stdcall WaitForSingleObject(long long) WaitForSingleObject
724 stdcall WaitForSingleObjectEx(long long long) WaitForSingleObjectEx
725 st
ub WaitNamedPipe
A
726 st
ub WaitNamedPipe
W
725 st
dcall WaitNamedPipeA (str long) WaitNamedPipe32
A
726 st
dcall WaitNamedPipeW (wstr long) WaitNamedPipe32
W
727 stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr) WideCharToMultiByte
728 stdcall WinExec(str long) WinExec32
729 stdcall WriteConsoleA(long ptr long ptr ptr) WriteConsole32A
...
...
win32/kernel32.c
View file @
45459a55
...
...
@@ -1138,5 +1138,19 @@ BOOL32 WINAPI UpdateResource32W(
}
/***********************************************************************
* WaitNamedPipe32A [KERNEL32.725]
*/
BOOL32
WINAPI
WaitNamedPipe32A
(
LPCSTR
lpNamedPipeName
,
DWORD
nTimeOut
)
{
FIXME
(
win32
,
"%s 0x%08lx
\n
"
,
lpNamedPipeName
,
nTimeOut
);
SetLastError
(
ERROR_PIPE_NOT_CONNECTED
);
return
FALSE
;
}
/***********************************************************************
* WaitNamedPipe32W [KERNEL32.726]
*/
BOOL32
WINAPI
WaitNamedPipe32W
(
LPCWSTR
lpNamedPipeName
,
DWORD
nTimeOut
)
{
FIXME
(
win32
,
"%s 0x%08lx
\n
"
,
debugstr_w
(
lpNamedPipeName
),
nTimeOut
);
SetLastError
(
ERROR_PIPE_NOT_CONNECTED
);
return
FALSE
;
}
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