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
e49be2db
Commit
e49be2db
authored
May 28, 2020
by
Paul Gofman
Committed by
Alexandre Julliard
May 28, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Partially implement KeInitializeDpc() function.
Signed-off-by:
Paul Gofman
<
pgofman@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e0c8c4c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+6
-2
wdm.h
include/ddk/wdm.h
+1
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
e49be2db
...
...
@@ -3079,9 +3079,13 @@ MM_SYSTEMSIZE WINAPI MmQuerySystemSize(void)
/***********************************************************************
* KeInitializeDpc (NTOSKRNL.EXE.@)
*/
VOID
WINAPI
KeInitializeDpc
(
PRKDPC
Dpc
,
PKDEFERRED_ROUTINE
DeferredRoutine
,
PVOID
DeferredC
ontext
)
void
WINAPI
KeInitializeDpc
(
KDPC
*
dpc
,
PKDEFERRED_ROUTINE
deferred_routine
,
void
*
deferred_c
ontext
)
{
FIXME
(
"stub
\n
"
);
FIXME
(
"dpc %p, deferred_routine %p, deferred_context %p semi-stub.
\n
"
,
dpc
,
deferred_routine
,
deferred_context
);
dpc
->
DeferredRoutine
=
deferred_routine
;
dpc
->
DeferredContext
=
deferred_context
;
}
/***********************************************************************
...
...
include/ddk/wdm.h
View file @
e49be2db
...
...
@@ -1695,6 +1695,7 @@ void WINAPI KeEnterCriticalRegion(void);
void
WINAPI
KeGenericCallDpc
(
PKDEFERRED_ROUTINE
,
PVOID
);
ULONG
WINAPI
KeGetCurrentProcessorNumber
(
void
);
PKTHREAD
WINAPI
KeGetCurrentThread
(
void
);
void
WINAPI
KeInitializeDpc
(
KDPC
*
,
PKDEFERRED_ROUTINE
,
void
*
);
void
WINAPI
KeInitializeEvent
(
PRKEVENT
,
EVENT_TYPE
,
BOOLEAN
);
void
WINAPI
KeInitializeMutex
(
PRKMUTEX
,
ULONG
);
void
WINAPI
KeInitializeSemaphore
(
PRKSEMAPHORE
,
LONG
,
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