2001-12-15 16:04 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>

This commit is contained in:
Viktor Szakats
2001-12-15 15:05:32 +00:00
parent 151661bec4
commit 3eac677e10
2 changed files with 12 additions and 1 deletions

View File

@@ -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

View File

@@ -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";