mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
12 lines
240 B
C++
12 lines
240 B
C++
#include "StringManipulation.h"
|
|
|
|
PVOID CopyMemoryEx(_Inout_ PVOID Destination, _In_ CONST PVOID Source, _In_ SIZE_T Length)
|
|
{
|
|
PBYTE D = (PBYTE)Destination;
|
|
PBYTE S = (PBYTE)Source;
|
|
|
|
while (Length--)
|
|
*D++ = *S++;
|
|
|
|
return Destination;
|
|
} |