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
b9e556d5
Commit
b9e556d5
authored
Nov 26, 2018
by
Zebediah Figura
Committed by
Alexandre Julliard
Nov 27, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Implement KeClearEvent().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
af0c6b5c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
8 deletions
+9
-8
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+0
-8
sync.c
dlls/ntoskrnl.exe/sync.c
+8
-0
wdm.h
include/ddk/wdm.h
+1
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
b9e556d5
...
...
@@ -3867,14 +3867,6 @@ NTSTATUS WINAPI IoCreateFile(HANDLE *handle, ACCESS_MASK access, OBJECT_ATTRIBUT
}
/***********************************************************************
* KeClearEvent (NTOSKRNL.EXE.@)
*/
VOID
WINAPI
KeClearEvent
(
PRKEVENT
event
)
{
FIXME
(
"stub: %p
\n
"
,
event
);
}
/***********************************************************************
* KeAcquireInStackQueuedSpinLock (NTOSKRNL.EXE.@)
*/
#ifdef DEFINE_FASTCALL2_ENTRYPOINT
...
...
dlls/ntoskrnl.exe/sync.c
View file @
b9e556d5
...
...
@@ -216,6 +216,14 @@ LONG WINAPI KeResetEvent( PRKEVENT event )
}
/***********************************************************************
* KeClearEvent (NTOSKRNL.EXE.@)
*/
void
WINAPI
KeClearEvent
(
PRKEVENT
event
)
{
KeResetEvent
(
event
);
}
/***********************************************************************
* KeInitializeSemaphore (NTOSKRNL.EXE.@)
*/
void
WINAPI
KeInitializeSemaphore
(
PRKSEMAPHORE
semaphore
,
LONG
count
,
LONG
limit
)
...
...
include/ddk/wdm.h
View file @
b9e556d5
...
...
@@ -1419,6 +1419,7 @@ void WINAPI IoReleaseCancelSpinLock(KIRQL);
NTSTATUS
WINAPI
IoSetDeviceInterfaceState
(
UNICODE_STRING
*
,
BOOLEAN
);
NTSTATUS
WINAPI
IoWMIRegistrationControl
(
PDEVICE_OBJECT
,
ULONG
);
void
WINAPI
KeClearEvent
(
PRKEVENT
);
PKTHREAD
WINAPI
KeGetCurrentThread
(
void
);
void
WINAPI
KeInitializeEvent
(
PRKEVENT
,
EVENT_TYPE
,
BOOLEAN
);
void
WINAPI
KeInitializeMutex
(
PRKMUTEX
,
ULONG
);
...
...
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