mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
16 lines
243 B
C++
16 lines
243 B
C++
#include "StringManipulation.h"
|
|
|
|
VOID ZeroMemoryEx(_Inout_ PVOID Destination, _In_ SIZE_T Size)
|
|
{
|
|
PULONG Dest = (PULONG)Destination;
|
|
SIZE_T Count = Size / sizeof(ULONG);
|
|
|
|
while (Count > 0)
|
|
{
|
|
*Dest = 0;
|
|
Dest++;
|
|
Count--;
|
|
}
|
|
|
|
return;
|
|
} |