diff --git a/Kernel32/WtGetFullPath.c b/Kernel32/GetFullPath.c similarity index 95% rename from Kernel32/WtGetFullPath.c rename to Kernel32/GetFullPath.c index f931e86..0a81cc6 100644 --- a/Kernel32/WtGetFullPath.c +++ b/Kernel32/GetFullPath.c @@ -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; }