Add files via upload

This commit is contained in:
vxunderground
2022-07-14 22:10:59 -05:00
committed by GitHub
parent ed3d4eadd6
commit 59db771f97
2 changed files with 27 additions and 0 deletions
+10
View File
@@ -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;
}