Helps in differentiating between Windows 95, 98, and Me versus Windows NT, 2000, and XP.
Bool = IsWinNT
The main difference between Windows 95, 98, and Me and the real 32 bit versions NT, 2000, and XP is the Win API version. The 32-bits version support the Win API 4.0.
Print IsWinNT
IsWinNT is the same as GetVersion() >= 0.
The Windows API function GetVersion() returns a positive number for Windows NT, and a negative for Windows 95/98.
{Created by Sjouke Hamstra; Last updated: 10/10/2014 by James Gaite}