Changeset 38758 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Sep 15, 2011 11:01:06 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 74039
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/RTSystemQueryOSInfo-win.cpp
r28800 r38758 65 65 kRTWinOSType_2008, 66 66 kRTWinOSType_7, 67 kRTWinOSType_8, 67 68 kRTWinOSType_NT_UNKNOWN = 199, 68 69 kRTWinOSType_NT_LAST = kRTWinOSType_UNKNOWN … … 205 206 && dwMinorVersion == 1) 206 207 enmVer = kRTWinOSType_7; 208 else if ( dwMajorVersion == 6 209 && dwMinorVersion == 2) 210 enmVer = kRTWinOSType_8; 207 211 else 208 212 enmVer = kRTWinOSType_NT_UNKNOWN; … … 372 376 case kRTWinOSType_2008: strcpy(szTmp, "Windows 2008"); break; 373 377 case kRTWinOSType_7: strcpy(szTmp, "Windows 7"); break; 378 case kRTWinOSType_8: strcpy(szTmp, "Windows 8"); break; 374 379 375 380 case kRTWinOSType_NT_UNKNOWN:
Note:
See TracChangeset
for help on using the changeset viewer.