win32 stuff

This commit is contained in:
Doug MacEachern 2005-03-10 02:19:45 +00:00
parent cb6c13f39e
commit e22d3b5016
1 changed files with 13 additions and 0 deletions

View File

@ -39,6 +39,19 @@ public class OperatingSystem {
} }
else if (os.name.indexOf("Windows") > -1) { else if (os.name.indexOf("Windows") > -1) {
os.vendor = "Microsoft"; os.vendor = "Microsoft";
if (os.name.endsWith("XP")) {
os.vendorVersion = "XP";
}
else if (os.name.indexOf("2003") != -1) {
os.vendorVersion = "2003";
}
else if (os.name.indexOf("2000") != -1) {
os.vendorVersion = "2000";
}
else if (os.name.indexOf("NT") != -1) {
os.vendorVersion = "NT";
}
os.name = "Win32";
} }
else if (os.name.equals("SunOS")) { else if (os.name.equals("SunOS")) {
os.vendor = "Sun Microsystems"; os.vendor = "Sun Microsystems";