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
b3252feb
Commit
b3252feb
authored
Nov 06, 2018
by
Austin English
Committed by
Alexandre Julliard
Nov 06, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add MmCopyVirtualMemory stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
454ba90a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+11
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
b3252feb
...
...
@@ -4016,3 +4016,14 @@ PVOID WINAPI PsGetProcessWow64Process(PEPROCESS process)
FIXME
(
"stub: %p
\n
"
,
process
);
return
NULL
;
}
/*********************************************************************
* MmCopyVirtualMemory (NTOSKRNL.@)
*/
NTSTATUS
WINAPI
MmCopyVirtualMemory
(
PEPROCESS
fromprocess
,
PVOID
fromaddress
,
PEPROCESS
toprocess
,
PVOID
toaddress
,
SIZE_T
bufsize
,
KPROCESSOR_MODE
mode
,
PSIZE_T
copied
)
{
FIXME
(
"stub: %p %p %p %p %lu %d %p
\n
"
,
fromprocess
,
fromaddress
,
toprocess
,
toaddress
,
bufsize
,
mode
,
copied
);
return
STATUS_NOT_IMPLEMENTED
;
}
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
b3252feb
...
...
@@ -668,6 +668,7 @@
@ stub MmBuildMdlForNonPagedPool
@ stub MmCanFileBeTruncated
@ stub MmCommitSessionMappedView
@ stdcall MmCopyVirtualMemory(ptr ptr ptr ptr long long ptr)
@ stub MmCreateMdl
@ stdcall MmCreateSection(ptr long ptr ptr long long long ptr)
@ stub MmDisableModifiedWriteOfSection
...
...
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