Commit a4d8b22f authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

shlwapi: Implement wow64 reporting.

parent be24fd4b
......@@ -4063,8 +4063,11 @@ BOOL WINAPI IsOS(DWORD feature)
case OS_ANYSERVER:
ISOS_RETURN(platform == VER_PLATFORM_WIN32_NT)
case OS_WOW6432:
FIXME("(OS_WOW6432) Should we check this?\n");
return FALSE;
{
BOOL is_wow64;
IsWow64Process(GetCurrentProcess(), &is_wow64);
return is_wow64;
}
case OS_WEBSERVER:
ISOS_RETURN(platform == VER_PLATFORM_WIN32_NT)
case OS_SMALLBUSINESSSERVER:
......
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