MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / KbFillMemory

Function KbFillMemory

User-Bridge/API/User-Bridge.cpp:477–485  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

475 }
476
477 BOOL WINAPI KbFillMemory(IN WdkTypes::PVOID Address, UCHAR Filler, ULONG Size)
478 {
479 if (!Address || !Size) return FALSE;
480 KB_FILL_MEMORY_IN Input = {};
481 Input.Address = Address;
482 Input.Size = Size;
483 Input.Filler = Filler;
484 return KbSendRequest(Ctls::KbFillMemory, &Input, sizeof(Input));
485 }
486
487 BOOL WINAPI KbEqualMemory(IN WdkTypes::PVOID Src, IN WdkTypes::PVOID Dest, ULONG Size, OUT PBOOLEAN Equals)
488 {

Callers

nothing calls this directly

Calls 1

KbSendRequestFunction · 0.85

Tested by

no test coverage detected