1// mwcw.h --
2// $Id: mwcw.h 1230 2007-03-09 15:58:53Z jcw $
3// This is part of Metakit, see http://www.equi4.com/metakit.html
4
5/** @file
6 * Configuration header for Metrowerks CodeWarrior
7 */
8
9#define q4_MWCW 1
10
11/////////////////////////////////////////////////////////////////////////////
12
13#if q4_68K
14#if !__option(IEEEdoubles)
15#error Cannot build Metakit with 10-byte doubles
16#endif
17#endif
18
19#if __option(bool)
20#define q4_BOOL 1
21// undo previous defaults, because q4_BOOL is not set early enough
22#undef false
23#undef true
24#undef bool
25#endif
26
27#undef _MSC_VER
28
29#pragma export on
30
31/////////////////////////////////////////////////////////////////////////////
32