shlwapi: Added OS_VISTAORGREATER flag to IsOS (undocumented).
This commit is contained in:
parent
4d53a4c9f5
commit
09a78cd566
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue