shlwapi: Added OS_VISTAORGREATER flag to IsOS (undocumented).

This commit is contained in:
Piotr Caban 2010-01-31 23:02:04 +01:00 committed by Alexandre Julliard
parent 4d53a4c9f5
commit 09a78cd566
1 changed files with 2 additions and 0 deletions

View File

@ -3913,6 +3913,8 @@ BOOL WINAPI IsOS(DWORD feature)
case OS_APPLIANCE: case OS_APPLIANCE:
FIXME("(OS_APPLIANCE) What should we return here?\n"); FIXME("(OS_APPLIANCE) What should we return here?\n");
return FALSE; return FALSE;
case 0x25: /*OS_VISTAORGREATER*/
ISOS_RETURN(platform == VER_PLATFORM_WIN32_NT && majorv >= 6)
} }
#undef ISOS_RETURN #undef ISOS_RETURN