Changeset 7587


Ignore:
Timestamp:
Dec 8, 2001, 5:18:14 PM (24 years ago)
Author:
sandervl
Message:

Default windows version reported by Odin is now Windows 2000 SP2

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/Odin.ini.txt

    r7573 r7587  
    1 /* $Id: Odin.ini.txt,v 1.10 2001-12-08 12:01:10 sandervl Exp $ */
     1/* $Id: Odin.ini.txt,v 1.11 2001-12-08 16:18:14 sandervl Exp $ */
    22
    33Odin initialization file documentation
     
    3333Version=Win98        -> Windows 98
    3434Version=WinME        -> Windows ME
    35 Version=NT4          -> Windows NT4  SP6 (default)
    36 Version=Win2000      -> Windows 2000 SP2
     35Version=NT4          -> Windows NT4  SP6
     36Version=Win2000      -> Windows 2000 SP2 (default)
    3737Version=WinXP        -> Windows XP
    3838Used to override the version Odin reports to the application.
  • trunk/src/kernel32/version.cpp

    r7577 r7587  
    1 /* $Id: version.cpp,v 1.6 2001-12-08 14:48:54 sandervl Exp $ */
     1/* $Id: version.cpp,v 1.7 2001-12-08 16:17:34 sandervl Exp $ */
    22
    33/*
     
    102102
    103103static BOOL fCheckVersion = FALSE;
    104 static int  winversion    = WINVERSION_NT40;
     104static int  winversion    = WINVERSION_WIN2000;
    105105
    106106//******************************************************************************
     
    138138        }
    139139        else
     140        if(!stricmp(szVersion, PROFILE_WINVERSION_NT40)) {
     141                winversion = WINVERSION_NT40;
     142        }
     143        else
    140144        if(!stricmp(szVersion, PROFILE_WINVERSION_WIN2000)) {
    141145                winversion = WINVERSION_WIN2000;
Note: See TracChangeset for help on using the changeset viewer.