Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
fcd33d68
Commit
fcd33d68
authored
Apr 12, 2010
by
Damjan Jovanovic
Committed by
Alexandre Julliard
Apr 13, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Stub out KeResetEvent and KeSetEvent.
parent
aadd2ac3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+20
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+2
-2
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
fcd33d68
...
...
@@ -1176,6 +1176,26 @@ ULONG WINAPI KeQueryTimeIncrement(void)
/***********************************************************************
* KeResetEvent (NTOSKRNL.EXE.@)
*/
LONG
WINAPI
KeResetEvent
(
PRKEVENT
Event
)
{
FIXME
(
"(%p): stub
\n
"
,
Event
);
return
0
;
}
/***********************************************************************
* KeSetEvent (NTOSKRNL.EXE.@)
*/
LONG
WINAPI
KeSetEvent
(
PRKEVENT
Event
,
KPRIORITY
Increment
,
BOOLEAN
Wait
)
{
FIXME
(
"(%p, %d, %d): stub
\n
"
,
Event
,
Increment
,
Wait
);
return
0
;
}
/***********************************************************************
* KeSetPriorityThread (NTOSKRNL.EXE.@)
*/
KPRIORITY
WINAPI
KeSetPriorityThread
(
PKTHREAD
Thread
,
KPRIORITY
Priority
)
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
fcd33d68
...
...
@@ -597,7 +597,7 @@
@ stub KeRemoveQueue
@ stub KeRemoveQueueDpc
@ stub KeRemoveSystemServiceTable
@ st
ub KeResetEvent
@ st
dcall KeResetEvent(ptr)
@ stub KeRestoreFloatingPointState
@ stub KeRevertToUserAffinityThread
@ stub KeRundownQueue
...
...
@@ -607,7 +607,7 @@
@ stub KeSetAffinityThread
@ stub KeSetBasePriorityThread
@ stub KeSetDmaIoCoherency
@ st
ub KeSetEvent
@ st
dcall KeSetEvent(ptr long long)
@ stub KeSetEventBoostPriority
@ stub KeSetIdealProcessorThread
@ stub KeSetImportanceDpc
...
...
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