2001-12-15 16:04 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>
This commit is contained in:
@@ -8,6 +8,13 @@
|
||||
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
2001-12-15 16:04 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>
|
||||
|
||||
* source/common/hbver.c
|
||||
! Displays Windows XP properly
|
||||
! Displays Windows ME properly (well, hopefully because I
|
||||
couldn't test this, if anyone has ME, please test it.)
|
||||
|
||||
2001-12-15 15:53 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>
|
||||
|
||||
* source/rdd/dbfcdx/dbfcdx1.c
|
||||
|
||||
@@ -213,12 +213,16 @@ char * hb_verPlatform( void )
|
||||
pszName = "Windows 95";
|
||||
else if( osVer.dwMajorVersion == 4 && osVer.dwMinorVersion == 10 )
|
||||
pszName = "Windows 98";
|
||||
else
|
||||
pszName = "Windows ME";
|
||||
|
||||
break;
|
||||
|
||||
case VER_PLATFORM_WIN32_NT:
|
||||
|
||||
if( osVer.dwMajorVersion == 5 )
|
||||
if( osVer.dwMajorVersion == 5 && osVer.dwMinorVersion == 1 )
|
||||
pszName = "Windows XP";
|
||||
else if( osVer.dwMajorVersion == 5 )
|
||||
pszName = "Windows 2000";
|
||||
else
|
||||
pszName = "Windows NT";
|
||||
|
||||
Reference in New Issue
Block a user