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

12 lines
222 B
C++

#include "StringManipulation.h"
PVOID CopyMemoryEx(PVOID Destination, CONST PVOID Source, SIZE_T Length)
{
PBYTE D = (PBYTE)Destination;
PBYTE S = (PBYTE)Source;
while (Length--)
*D++ = *S++;
return Destination;
}