I wrote: > Another interesting detail I've noticed is that GetVersionEx sets > `dwPlatformId` member of OSVERSIONINFO* structures to > `VER_PLATFORM_WIN32_NT`; this makes me wonder if there was a separate value > to identify Win9x systems?
So, according to documentation for GetVersionEx, `dwPlatformId` may be set to `VER_PLATFORM_WIN32s` (has value 0) for Win32s and set to `VER_PLATFORM_WIN32_WINDOWS` (has value 1) for Windows 95/98/Me. Documentation for GetVersion also describes how to distinguish Windows NT and Windows 9x platforms using returned DWORD value. - Kirill Makurin _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
