Commit 0d3fd147 authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 3d66e96b
......@@ -85,8 +85,6 @@ static const WCHAR *get_machine_wow64_dir( WORD machine )
case IMAGE_FILE_MACHINE_TARGET_HOST: return system_dir;
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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment