Add common memory related routines to XTLDR protocol
Some checks failed
Builds / ExectOS (amd64) (push) Successful in 44s
Builds / ExectOS (i686) (push) Failing after 15s

This commit is contained in:
2024-01-10 19:51:27 +01:00
parent 53cd4e0052
commit c4450e88ab
2 changed files with 9 additions and 0 deletions

View File

@@ -578,9 +578,12 @@ BlpInstallXtLoaderProtocol()
BlpLdrProtocol.Disk.ReadFile = BlReadFile;
BlpLdrProtocol.Memory.AllocatePages = BlMemoryAllocatePages;
BlpLdrProtocol.Memory.AllocatePool = BlMemoryAllocatePool;
BlpLdrProtocol.Memory.CopyMemory = RtlCopyMemory;
BlpLdrProtocol.Memory.FreePages = BlMemoryFreePages;
BlpLdrProtocol.Memory.FreePool = BlMemoryFreePool;
BlpLdrProtocol.Memory.GetMemoryMap = BlGetMemoryMap;
BlpLdrProtocol.Memory.SetMemory = RtlSetMemory;
BlpLdrProtocol.Memory.ZeroMemory = RtlZeroMemory;
BlpLdrProtocol.Protocol.Close = BlCloseProtocol;
BlpLdrProtocol.Protocol.GetModulesList = BlGetModulesList;
BlpLdrProtocol.Protocol.Open = BlOpenProtocol;