* winsup.h: Add `winME' to os_type symbols.

* dcrt0.cc (set_os_type): Identify Windows ME systems.
        * (host_dependent_constants::init): Care for winME.
        * uname.cc (uname): Ditto.
This commit is contained in:
Corinna Vinschen
2000-09-30 01:38:13 +00:00
parent b504f11afa
commit 84ecbb38d6
4 changed files with 16 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ return __res;
extern "C" DWORD WINAPI GetLastError (void);
/* Used for runtime OS check/decisions. */
enum os_type {winNT = 1, win95, win98, win32s, unknown};
enum os_type {winNT = 1, win95, win98, winME, win32s, unknown};
extern os_type os_being_run;
/* Used to check if Cygwin DLL is dynamically loaded. */