Main Page | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members

win.h

Go to the documentation of this file.
00001 // win.h --
00002 // $Id: win.h,v 1.7 2003/11/23 01:42:51 wcvs Exp $
00003 // This is part of Metakit, the homepage is https://www.equi4.com/metakit/
00004 
00009 #if defined (_MSDOS)
00010 #define q4_DOS 1
00011 #endif
00012 
00013 #if defined (_WINDOWS)
00014 #define q4_WIN 1
00015 #endif
00016 
00017 #if defined (_WIN32)
00018 #define q4_WIN32 1
00019 #endif
00020 
00021 #if defined (_WIN32_WCE)        // check for Win CE
00022 #define q4_WINCE 1
00023 #define q4_WIN32 1
00024 #endif
00025 
00026 #if q4_WIN32                    // WIN32 implies WIN
00027 #undef q4_WIN
00028 #define q4_WIN 1
00029 #endif
00030 
00031 #if q4_WIN                      // WIN implies not DOS, even for Win3
00032 #undef q4_DOS
00033 #endif


Metakit C++ API Reference - https://www.equi4.com/metakit.html - extracted with Doxygen