]>
Commit | Line | Data |
---|---|---|
a54d6c1b SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx_cw_d.h | |
3 | // Purpose: wxWindows definitions for CodeWarrior builds (Debug) | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 12/10/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_CW__ | |
13 | #define _WX_CW__ | |
14 | ||
15 | #define MSL_USE_PRECOMPILED_HEADERS 1 | |
16 | ||
17 | #if !defined( __MWERKS__ ) | |
18 | #error "this file is only for builds with Metrowerks CodeWarrior" | |
19 | #endif | |
20 | ||
518f33a4 SC |
21 | #define WX_COMP_INLINE_NO_CLASS // defined if the compiler does not want the classname repeated for inlines within a class definition |
22 | ||
a54d6c1b SC |
23 | #if (__MWERKS__ < 0x0900) || macintosh |
24 | #define __MAC__ | |
25 | #define __WXMAC__ | |
26 | #define USE_PRECOMPILED_MAC_HEADERS 1 /*Set to 0 if you don't want to use precompiled MacHeaders*/ | |
27 | #include <ansi_prefix.mac.h> | |
28 | #define WX_PRECOMP | |
29 | // automatically includes MacHeaders | |
30 | #elif (__MWERKS__ >= 0x0900) && __INTEL__ | |
31 | #define __WXMSW__ | |
32 | #define __WINDOWS__ | |
33 | #define __WIN95__ | |
34 | #define STRICT | |
35 | #define NOMINMAX | |
36 | #include <ansi_prefix.win32.h> | |
37 | // #include <Windows.h> | |
38 | // #include <COMMCTRL.H> | |
39 | #elif __BEOS__ | |
40 | #include <ansi_prefix.be.h> | |
41 | #include <Be.h> | |
42 | #else | |
43 | #error unknown MW compiler | |
44 | #endif | |
45 | ||
518f33a4 SC |
46 | #define __WXDEBUG__ |
47 | #define USE_DEFINE | |
1b19f0c3 SC |
48 | // in order to avoid problems further down in wxWindows |
49 | ||
518f33a4 SC |
50 | #ifdef __cplusplus |
51 | extern "C" | |
52 | { | |
53 | #endif | |
54 | char *strdup(const char *s) ; | |
55 | int isascii( int c ) ; | |
56 | #ifdef __cplusplus | |
57 | } ; | |
58 | #endif | |
a54d6c1b SC |
59 | #endif |
60 | // _WX_CW__ |