Update and rename WtGetFullPath.c to GetFullPath.c

This commit is contained in:
vxunderground 2021-05-27 11:40:28 -05:00 committed by GitHub
parent b39898f266
commit 65b874a5ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -348,7 +348,7 @@ PPEB GetPeb(VOID)
#endif
}
PWCHAR WtStringCopyW(PWCHAR String1, PWCHAR String2)
PWCHAR StringCopyW(PWCHAR String1, PWCHAR String2)
{
PWCHAR p = String1;
@ -368,7 +368,7 @@ INT main(VOID)
Peb = (PPEB)GetPeb();
ProcessParameters = Peb->ProcessParameters;
WtStringCopyW(FullPath, ProcessParameters->ImagePathName.Buffer);
StringCopyW(FullPath, ProcessParameters->ImagePathName.Buffer);
return ERROR_SUCCESS;
}