mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
shlwapi: Implement wow64 reporting.
This commit is contained in:
parent
be24fd4b64
commit
a4d8b22f43
1 changed files with 5 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue