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
80c23190
Commit
80c23190
authored
Jan 31, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 31, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add KeEnterGuardedRegion and KeLeaveGuardedRegion stubs.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
496447f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+16
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+2
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
80c23190
...
...
@@ -3940,3 +3940,19 @@ NTSTATUS WINAPI MmCopyVirtualMemory(PEPROCESS fromprocess, PVOID fromaddress, PE
FIXME
(
"stub: %p %p %p %p %lu %d %p
\n
"
,
fromprocess
,
fromaddress
,
toprocess
,
toaddress
,
bufsize
,
mode
,
copied
);
return
STATUS_NOT_IMPLEMENTED
;
}
/*********************************************************************
* KeEnterGuardedRegion (NTOSKRNL.@)
*/
void
WINAPI
KeEnterGuardedRegion
(
void
)
{
FIXME
(
"
\n
"
);
}
/*********************************************************************
* KeLeaveGuardedRegion (NTOSKRNL.@)
*/
void
WINAPI
KeLeaveGuardedRegion
(
void
)
{
FIXME
(
"
\n
"
);
}
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
80c23190
...
...
@@ -43,6 +43,8 @@
@ stdcall -norelay IofCompleteRequest(ptr long)
@ stdcall -arch=arm,arm64,x86_64 KeAcquireInStackQueuedSpinLock(ptr ptr)
@ stdcall -norelay KeAcquireInStackQueuedSpinLockAtDpcLevel(ptr ptr)
@ stdcall KeEnterGuardedRegion()
@ stdcall KeLeaveGuardedRegion()
@ stdcall -arch=arm,arm64,x86_64 KeReleaseInStackQueuedSpinLock(ptr)
@ stdcall -norelay KeReleaseInStackQueuedSpinLockFromDpcLevel(ptr)
@ stub KeSetTimeUpdateNotifyRoutine
...
...
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