mirror of
https://github.com/vxunderground/VX-API
synced 2026-06-06 16:54:55 +00:00
Add files via upload
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
PVOID RfCopyMemory(PVOID Destination, CONST PVOID Source, SIZE_T Length)
|
||||
{
|
||||
PBYTE D = (PBYTE)Destination;
|
||||
PBYTE S = (PBYTE)Source;
|
||||
|
||||
while (Length--)
|
||||
*D++ = *S++;
|
||||
|
||||
return Destination;
|
||||
}
|
||||
Reference in New Issue
Block a user