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
ee7a5b28
Commit
ee7a5b28
authored
May 31, 2020
by
Paul Gofman
Committed by
Alexandre Julliard
Jun 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub for KeUnstackDetachProcess().
Signed-off-by:
Paul Gofman
<
pgofman@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6f4e73d0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+5
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
ntifs.h
include/ddk/ntifs.h
+1
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
ee7a5b28
...
...
@@ -4286,3 +4286,8 @@ void WINAPI KeStackAttachProcess(KPROCESS *process, KAPC_STATE *apc_state)
{
FIXME
(
"process %p, apc_state %p stub.
\n
"
,
process
,
apc_state
);
}
void
WINAPI
KeUnstackDetachProcess
(
KAPC_STATE
*
apc_state
)
{
FIXME
(
"apc_state %p stub.
\n
"
,
apc_state
);
}
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
ee7a5b28
...
...
@@ -648,7 +648,7 @@
@ stub KeSynchronizeExecution
@ stub KeTerminateThread
@ extern KeTickCount
@ st
ub KeUnstackDetachProcess
@ st
dcall KeUnstackDetachProcess(ptr)
@ stub KeUpdateRunTime
@ stub KeUpdateSystemTime
@ stub KeUserModeCallback
...
...
include/ddk/ntifs.h
View file @
ee7a5b28
...
...
@@ -133,6 +133,7 @@ BOOLEAN WINAPI FsRtlIsNameInExpression(PUNICODE_STRING, PUNICODE_STRING, BOOLEAN
DEVICE_OBJECT
*
WINAPI
IoGetAttachedDevice
(
DEVICE_OBJECT
*
);
PEPROCESS
WINAPI
IoGetRequestorProcess
(
IRP
*
);
void
WINAPI
KeStackAttachProcess
(
KPROCESS
*
,
KAPC_STATE
*
);
void
WINAPI
KeUnstackDetachProcess
(
KAPC_STATE
*
);
NTSTATUS
WINAPI
ObOpenObjectByPointer
(
void
*
,
ULONG
,
PACCESS_STATE
,
ACCESS_MASK
,
POBJECT_TYPE
,
KPROCESSOR_MODE
,
HANDLE
*
);
NTSTATUS
WINAPI
ObQueryNameString
(
PVOID
,
POBJECT_NAME_INFORMATION
,
ULONG
,
PULONG
);
BOOLEAN
WINAPI
PsIsSystemThread
(
PETHREAD
);
...
...
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