Files
vxunderground-VX-API/VX-API/ZeroMemoryEx.cpp
T
vxunderground 86ca3658a5 update
2022-09-10 13:20:38 -05:00

16 lines
230 B
C++

#include "StringManipulation.h"
VOID ZeroMemoryEx(PVOID Destination, SIZE_T Size)
{
PULONG Dest = (PULONG)Destination;
SIZE_T Count = Size / sizeof(ULONG);
while (Count > 0)
{
*Dest = 0;
Dest++;
Count--;
}
return;
}