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
4e511d9e
Commit
4e511d9e
authored
Feb 05, 2008
by
Paul Chitescu
Committed by
Alexandre Julliard
Feb 06, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Implement MmPageEntireDriver and MmResetDriverPaging.
parent
1552f22a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
+19
-2
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+17
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+2
-2
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
4e511d9e
...
...
@@ -562,6 +562,23 @@ void WINAPI MmFreeNonCachedMemory( void *addr, SIZE_T size )
}
/***********************************************************************
* MmPageEntireDriver (NTOSKRNL.EXE.@)
*/
PVOID
WINAPI
MmPageEntireDriver
(
PVOID
AddrInSection
)
{
TRACE
(
"%p
\n
"
,
AddrInSection
);
return
AddrInSection
;
}
/***********************************************************************
* MmResetDriverPaging (NTOSKRNL.EXE.@)
*/
void
WINAPI
MmResetDriverPaging
(
PVOID
AddrInSection
)
{
TRACE
(
"%p
\n
"
,
AddrInSection
);
}
/***********************************************************************
* PsCreateSystemThread (NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
PsCreateSystemThread
(
PHANDLE
ThreadHandle
,
ULONG
DesiredAccess
,
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
4e511d9e
...
...
@@ -700,7 +700,7 @@
@ stub MmMapViewOfSection
@ stub MmMarkPhysicalMemoryAsBad
@ stub MmMarkPhysicalMemoryAsGood
@ st
ub MmPageEntireDriver
@ st
dcall MmPageEntireDriver(ptr)
@ stub MmPrefetchPages
@ stub MmProbeAndLockPages
@ stub MmProbeAndLockProcessPages
...
...
@@ -708,7 +708,7 @@
@ stub MmProtectMdlSystemAddress
@ stub MmQuerySystemSize
@ stub MmRemovePhysicalMemory
@ st
ub MmResetDriverPaging
@ st
dcall MmResetDriverPaging(ptr)
@ stub MmSectionObjectType
@ stub MmSecureVirtualMemory
@ stub MmSetAddressRangeModified
...
...
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