X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=reactos%2Fboot%2Fenviron%2Flib%2Fmm%2Fstub%2Fmm.c;h=3afe432eb432304190c61d01ebc87e6de3e33d21;hp=bb2b2471768cd31e8a6430c0b948c36b6fc5b3d4;hb=86c98bfda7878739ba6a3adabfef67773edd7109;hpb=a822da78021754b8821ef1af625cf4b8718cd3e2 diff --git a/reactos/boot/environ/lib/mm/stub/mm.c b/reactos/boot/environ/lib/mm/stub/mm.c index bb2b2471768..3afe432eb43 100644 --- a/reactos/boot/environ/lib/mm/stub/mm.c +++ b/reactos/boot/environ/lib/mm/stub/mm.c @@ -10,6 +10,10 @@ #include "bl.h" +BL_ADDRESS_RANGE MmArchKsegAddressRange; +ULONG_PTR MmArchTopOfApplicationAddressSpace; +ULONG MmArchLargePageSize; + /* FUNCTIONS *****************************************************************/ NTSTATUS @@ -23,3 +27,26 @@ MmArchInitialize ( EfiPrintf(L" MmArchInitialize NOT IMPLEMENTED for this platform\r\n"); return STATUS_NOT_IMPLEMENTED; } + +NTSTATUS +MmMapPhysicalAddress ( + _Inout_ PPHYSICAL_ADDRESS PhysicalAddressPtr, + _Inout_ PVOID* VirtualAddressPtr, + _Inout_ PULONGLONG SizePtr, + _In_ ULONG CacheAttributes + ) +{ + EfiPrintf(L" MmMapPhysicalAddress NOT IMPLEMENTED for this platform\r\n"); + return STATUS_NOT_IMPLEMENTED; +} + +BOOLEAN +MmArchTranslateVirtualAddress ( + _In_ PVOID VirtualAddress, + _Out_opt_ PPHYSICAL_ADDRESS PhysicalAddress, + _Out_opt_ PULONG CachingFlags + ) +{ + EfiPrintf(L" MmMapPhysicalAddress NOT IMPLEMENTED for this platform\r\n"); + return FALSE; +} \ No newline at end of file