mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
Merge 76db5248cf
into b519ce04e3
This commit is contained in:
commit
00aed0f4c1
1 changed files with 27 additions and 3 deletions
|
@ -314,7 +314,15 @@ std::string getOperatingSystemInfo()
|
||||||
rv << "Legacy, probably XP";
|
rv << "Legacy, probably XP";
|
||||||
return rv.str();
|
return rv.str();
|
||||||
}
|
}
|
||||||
switch (ovi.dwMinorVersion) {
|
else if (ovi.dwMajorVersion == 10) {
|
||||||
|
if (ovi.wProductType == VER_NT_WORKSTATION) {
|
||||||
|
rv << "10";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
rv << "Server 2016";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else switch (ovi.dwMinorVersion) {
|
||||||
case 0:
|
case 0:
|
||||||
if (ovi.wProductType == VER_NT_WORKSTATION) {
|
if (ovi.wProductType == VER_NT_WORKSTATION) {
|
||||||
rv << "Vista";
|
rv << "Vista";
|
||||||
|
@ -333,9 +341,25 @@ std::string getOperatingSystemInfo()
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
case 2:
|
||||||
// Windows above 6.2 does not actually say so. :p
|
if (ovi.wProductType == VER_NT_WORKSTATION) {
|
||||||
|
rv << "8";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
rv << "Server 2012";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 3:
|
||||||
|
if (ovi.wProductType == VER_NT_WORKSTATION) {
|
||||||
|
rv << "8.1";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
rv << "Server 2012 R2";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
rv << ovi.dwMajorVersion;
|
rv << ovi.dwMajorVersion;
|
||||||
if (ovi.dwMinorVersion) {
|
if (ovi.dwMinorVersion) {
|
||||||
rv << "." << ovi.dwMinorVersion;
|
rv << "." << ovi.dwMinorVersion;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue