You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/akregator/src/mk4storage/metakit/src/win.h

34 lines
569 B

// win.h --
// $Id$
// This is part of Metakit, the homepage is http://www.equi4.com/metakit/
/** @file
* Configuration header for Windows builds
*/
#if defined (_MSDOS)
#define q4_DOS 1
#endif
#if defined (_WINDOWS)
#define q4_WIN 1
#endif
#if defined (_WIN32)
#define q4_WIN32 1
#endif
#if defined (_WIN32_WCE) // check for Win CE
#define q4_WINCE 1
#define q4_WIN32 1
#endif
#if q4_WIN32 // WIN32 implies WIN
#undef q4_WIN
#define q4_WIN 1
#endif
#if q4_WIN // WIN implies not DOS, even for Win3
#undef q4_DOS
#endif