Browse - programming tips - windows 95 or nt
Title: Win32: Its Windows 95 or NT?
Date: 1997dec16
Sometimes you have to know if you are running under
Windows 95 or Windows NT. The Microsoft example
code to do this is really huge. This is how I do it:
BOOL IsWindowsNT()
{
return ::GetVersion() < 0x80000000;
}
Add a commentSign in to add a comment |