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
920d9c6f
Commit
920d9c6f
authored
Apr 08, 2000
by
Andreas Mohr
Committed by
Alexandre Julliard
Apr 08, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added PeekNamedPipe stub.
parent
66e47407
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
kernel32.spec
relay32/kernel32.spec
+1
-1
newfns.c
win32/newfns.c
+15
-0
No files found.
relay32/kernel32.spec
View file @
920d9c6f
...
...
@@ -567,7 +567,7 @@ import ntdll.dll
549 stdcall OutputDebugStringW(wstr) OutputDebugStringW
550 stdcall PeekConsoleInputA(ptr ptr long ptr) PeekConsoleInputA
551 stdcall PeekConsoleInputW(ptr ptr long ptr) PeekConsoleInputW
552 st
ub
PeekNamedPipe
552 st
dcall PeekNamedPipe(long ptr long ptr ptr ptr)
PeekNamedPipe
553 stub PostQueuedCompletionStatus
554 stdcall PrepareTape(ptr long long) PrepareTape
555 stdcall Process32First (ptr ptr) Process32First
...
...
win32/newfns.c
View file @
920d9c6f
...
...
@@ -89,6 +89,21 @@ HANDLE WINAPI CreateNamedPipeW (LPCWSTR lpName, DWORD dwOpenMode,
}
/***********************************************************************
* PeekNamedPipe (KERNEL32.552)
*/
BOOL
WINAPI
PeekNamedPipe
(
HANDLE
hPipe
,
LPVOID
lpvBuffer
,
DWORD
cbBuffer
,
LPDWORD
lpcbRead
,
LPDWORD
lpcbAvail
,
LPDWORD
lpcbMessage
)
{
FIXME
(
"(%08x, %p, %08lx, %p, %p, %p): stub
\n
"
,
hPipe
,
lpvBuffer
,
cbBuffer
,
lpcbRead
,
lpcbAvail
,
lpcbMessage
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* GetSystemPowerStatus (KERNEL32.621)
*/
BOOL
WINAPI
GetSystemPowerStatus
(
LPSYSTEM_POWER_STATUS
sps_ptr
)
...
...
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