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
b3a698e5
Commit
b3a698e5
authored
Jul 06, 2017
by
Austin English
Committed by
Alexandre Julliard
Jul 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add IoCreateNotificationEvent stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
54dc788b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+10
-1
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
b3a698e5
...
...
@@ -3255,7 +3255,16 @@ KIRQL WINAPI KeAcquireSpinLockRaiseToDpc(KSPIN_LOCK *spinlock)
/***********************************************************************
* KeReleaseSpinLock (NTOSKRNL.EXE.@)
*/
VOID
WINAPI
KeReleaseSpinLock
(
KSPIN_LOCK
*
spinlock
,
KIRQL
irql
)
void
WINAPI
KeReleaseSpinLock
(
KSPIN_LOCK
*
spinlock
,
KIRQL
irql
)
{
FIXME
(
"stub: %p %u
\n
"
,
spinlock
,
irql
);
}
/***********************************************************************
* IoCreateNotificationEvent (NTOSKRNL.EXE.@)
*/
PKEVENT
WINAPI
IoCreateNotificationEvent
(
UNICODE_STRING
*
name
,
HANDLE
*
handle
)
{
FIXME
(
"stub: %s %p
\n
"
,
debugstr_us
(
name
),
handle
);
return
NULL
;
}
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
b3a698e5
...
...
@@ -343,7 +343,7 @@
@ stdcall IoCreateDriver(ptr ptr)
@ stdcall IoCreateFile(ptr long ptr ptr ptr long long long long ptr long long ptr long)
@ stub IoCreateFileSpecifyDeviceObjectHint
@ st
ub IoCreateNotificationEvent
@ st
dcall IoCreateNotificationEvent(ptr ptr)
@ stub IoCreateStreamFileObject
@ stub IoCreateStreamFileObjectEx
@ stub IoCreateStreamFileObjectLite
...
...
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