to find out if the file is running in
win95/98 or if the system is NT.. ?
Johan
>How do i with c++ find out on which platform the file is running? i want
>
>to find out if the file is running in
>win95/98 or if the system is NT.. ?
C++ as language has no information about the operating system.
The Win32 API however has an easy to use function called
GetVersionEx() which retrieves information about the version of the
operating system that is currently running.
Hens Zimmerman