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
a4ea347f
Commit
a4ea347f
authored
Jul 18, 2010
by
Austin English
Committed by
Alexandre Julliard
Jul 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stubs for MmMapIoSpace/MmUnmapIoSpace.
parent
789a8189
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 @
a4ea347f
...
...
@@ -1327,6 +1327,15 @@ BOOLEAN WINAPI MmIsAddressValid(PVOID VirtualAddress)
}
/***********************************************************************
* MmMapIoSpace (NTOSKRNL.EXE.@)
*/
PVOID
WINAPI
MmMapIoSpace
(
PHYSICAL_ADDRESS
PhysicalAddress
,
DWORD
NumberOfBytes
,
DWORD
CacheType
)
{
FIXME
(
"stub: 0x%08x%08x, %d, %d
\n
"
,
PhysicalAddress
.
u
.
HighPart
,
PhysicalAddress
.
u
.
LowPart
,
NumberOfBytes
,
CacheType
);
return
NULL
;
}
/***********************************************************************
* MmPageEntireDriver (NTOSKRNL.EXE.@)
*/
PVOID
WINAPI
MmPageEntireDriver
(
PVOID
AddrInSection
)
...
...
@@ -1344,6 +1353,14 @@ void WINAPI MmResetDriverPaging(PVOID AddrInSection)
}
/***********************************************************************
* MmUnmapIoSpace (NTOSKRNL.EXE.@)
*/
VOID
WINAPI
MmUnmapIoSpace
(
PVOID
BaseAddress
,
SIZE_T
NumberOfBytes
)
{
FIXME
(
"stub: %p, %lu
\n
"
,
BaseAddress
,
NumberOfBytes
);
}
/***********************************************************************
* ObfReferenceObject (NTOSKRNL.EXE.@)
*/
VOID
WINAPI
ObfReferenceObject
(
PVOID
Object
)
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
a4ea347f
...
...
@@ -688,7 +688,7 @@
@ stub MmLockPagableDataSection
@ stub MmLockPagableImageSection
@ stub MmLockPagableSectionByHandle
@ st
ub MmMapIoSpace
@ st
dcall MmMapIoSpace(long long long long)
@ stub MmMapLockedPages
@ stub MmMapLockedPagesSpecifyCache
@ stub MmMapLockedPagesWithReservedMapping
...
...
@@ -718,7 +718,7 @@
@ stub MmTrimAllSystemPagableMemory
@ stub MmUnlockPagableImageSection
@ stub MmUnlockPages
@ st
ub MmUnmapIoSpace
@ st
dcall MmUnmapIoSpace(ptr long)
@ stub MmUnmapLockedPages
@ stub MmUnmapReservedMapping
@ stub MmUnmapVideoDisplay
...
...
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