wow64: Only support Wow64 system directories for 32-bit platforms.

This commit is contained in:
Alexandre Julliard 2023-10-31 14:07:05 +01:00
parent 0d3fd14747
commit c9a011a9cb

View file

@ -64,8 +64,6 @@ static inline const WCHAR *get_machine_wow64_dir( USHORT machine )
case IMAGE_FILE_MACHINE_TARGET_HOST: return L"\\??\\C:\\windows\\system32";
case IMAGE_FILE_MACHINE_I386: return L"\\??\\C:\\windows\\syswow64";
case IMAGE_FILE_MACHINE_ARMNT: return L"\\??\\C:\\windows\\sysarm32";
case IMAGE_FILE_MACHINE_AMD64: return L"\\??\\C:\\windows\\sysx8664";
case IMAGE_FILE_MACHINE_ARM64: return L"\\??\\C:\\windows\\sysarm64";
default: return NULL;
}
}