Commit a4ea347f authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add stubs for MmMapIoSpace/MmUnmapIoSpace.

parent 789a8189
...@@ -1327,6 +1327,15 @@ BOOLEAN WINAPI MmIsAddressValid(PVOID VirtualAddress) ...@@ -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.@) * MmPageEntireDriver (NTOSKRNL.EXE.@)
*/ */
PVOID WINAPI MmPageEntireDriver(PVOID AddrInSection) PVOID WINAPI MmPageEntireDriver(PVOID AddrInSection)
...@@ -1344,6 +1353,14 @@ void WINAPI MmResetDriverPaging(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.@) * ObfReferenceObject (NTOSKRNL.EXE.@)
*/ */
VOID WINAPI ObfReferenceObject(PVOID Object) VOID WINAPI ObfReferenceObject(PVOID Object)
......
...@@ -688,7 +688,7 @@ ...@@ -688,7 +688,7 @@
@ stub MmLockPagableDataSection @ stub MmLockPagableDataSection
@ stub MmLockPagableImageSection @ stub MmLockPagableImageSection
@ stub MmLockPagableSectionByHandle @ stub MmLockPagableSectionByHandle
@ stub MmMapIoSpace @ stdcall MmMapIoSpace(long long long long)
@ stub MmMapLockedPages @ stub MmMapLockedPages
@ stub MmMapLockedPagesSpecifyCache @ stub MmMapLockedPagesSpecifyCache
@ stub MmMapLockedPagesWithReservedMapping @ stub MmMapLockedPagesWithReservedMapping
...@@ -718,7 +718,7 @@ ...@@ -718,7 +718,7 @@
@ stub MmTrimAllSystemPagableMemory @ stub MmTrimAllSystemPagableMemory
@ stub MmUnlockPagableImageSection @ stub MmUnlockPagableImageSection
@ stub MmUnlockPages @ stub MmUnlockPages
@ stub MmUnmapIoSpace @ stdcall MmUnmapIoSpace(ptr long)
@ stub MmUnmapLockedPages @ stub MmUnmapLockedPages
@ stub MmUnmapReservedMapping @ stub MmUnmapReservedMapping
@ stub MmUnmapVideoDisplay @ stub MmUnmapVideoDisplay
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment