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
58a4fb9e
Commit
58a4fb9e
authored
Apr 16, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Apr 16, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Declare and define a stub for NtSignalAndWaitForSingleObject.
parent
a1d66596
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
sync.c
dlls/ntdll/sync.c
+11
-0
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
58a4fb9e
...
...
@@ -977,7 +977,7 @@
@ stub NtDeleteAtom
@ stub NtFindAtom
@ stub NtReadFileScatter
@ st
ub NtSignalAndWaitForSingleObject
@ st
dcall NtSignalAndWaitForSingleObject(long long long ptr)
@ stub NtWriteFileGather
@ stub RtlAddAtomToAtomTable
@ stub RtlCreateAtomTable
...
...
dlls/ntdll/sync.c
View file @
58a4fb9e
...
...
@@ -822,3 +822,14 @@ NTSTATUS WINAPI NtDelayExecution( BOOLEAN alertable, const LARGE_INTEGER *timeou
}
return
STATUS_SUCCESS
;
}
/******************************************************************
* NtSignalAndWaitForSingleObject (NTDLL.@)
*/
NTSTATUS
WINAPI
NtSignalAndWaitForSingleObject
(
HANDLE
hSignalObject
,
HANDLE
hWaitObject
,
BOOLEAN
bAlertable
,
PLARGE_INTEGER
Timeout
)
{
FIXME
(
"%p %p %d %p
\n
"
,
hSignalObject
,
hWaitObject
,
bAlertable
,
Timeout
);
return
STATUS_SUCCESS
;
}
include/winternl.h
View file @
58a4fb9e
...
...
@@ -1530,6 +1530,7 @@ NTSTATUS WINAPI NtSetSecurityObject(HANDLE,SECURITY_INFORMATION,PSECURITY_DESCR
NTSTATUS
WINAPI
NtSetSystemTime
(
const
LARGE_INTEGER
*
,
LARGE_INTEGER
*
);
NTSTATUS
WINAPI
NtSetTimer
(
HANDLE
,
const
LARGE_INTEGER
*
,
PTIMERAPCROUTINE
,
PVOID
,
BOOLEAN
,
ULONG
,
BOOLEAN
*
);
NTSTATUS
WINAPI
NtSetValueKey
(
HKEY
,
const
UNICODE_STRING
*
,
ULONG
,
ULONG
,
const
void
*
,
ULONG
);
NTSTATUS
WINAPI
NtSignalAndWaitForSingleObject
(
HANDLE
,
HANDLE
,
BOOLEAN
,
PLARGE_INTEGER
);
NTSTATUS
WINAPI
NtSuspendThread
(
HANDLE
,
PULONG
);
NTSTATUS
WINAPI
NtTerminateProcess
(
HANDLE
,
LONG
);
NTSTATUS
WINAPI
NtTerminateThread
(
HANDLE
,
LONG
);
...
...
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