]>
Commit | Line | Data |
---|---|---|
f7c1de78 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx_cw.h | |
3 | // Purpose: wxWindows definitions for CodeWarrior builds | |
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 | #if __MWERKS__ >= 0x2400 | |
16 | #pragma old_argmatch on | |
17 | #endif | |
18 | ||
19 | #if __option(profile) | |
20 | #ifdef __cplusplus | |
21 | #if __POWERPC__ | |
22 | #include <wxshlba_PPC++_prof.mch> | |
23 | #elif __INTEL__ | |
24 | #include <wxshlba_x86++_prof.mch> | |
25 | #elif __CFM68K__ | |
26 | #include <wxshlba_cfm++_prof.mch> | |
27 | #else | |
28 | #include <wxshlba_68k++_prof.mch> | |
29 | #endif | |
30 | #else | |
31 | #if __POWERPC__ | |
32 | #include <wxshlba_PPC_prof.mch> | |
33 | #elif __INTEL__ | |
34 | #include <wxshlba_x86_prof.mch> | |
35 | #elif __CFM68K__ | |
36 | #include <wxshlba_cfm_prof.mch> | |
37 | #else | |
38 | #include <wxshlba_68k_prof.mch> | |
39 | #endif | |
40 | #endif | |
41 | #else | |
42 | #ifdef __cplusplus | |
43 | #if __POWERPC__ | |
44 | #include <wxshlba_PPC++.mch> | |
45 | #elif __INTEL__ | |
46 | #include <wxshlba_x86++.mch> | |
47 | #elif __CFM68K__ | |
48 | #include <wxshlba_cfm++.mch> | |
49 | #else | |
50 | #include <wxshlba_68k++.mch> | |
51 | #endif | |
52 | #else | |
53 | #if __POWERPC__ | |
54 | #include <wxshlba_PPC.mch> | |
55 | #elif __INTEL__ | |
56 | #include <wxshlba_x86.mch> | |
57 | #elif __CFM68K__ | |
58 | #include <wxshlba_cfm.mch> | |
59 | #else | |
60 | #include <wxshlba_68k.mch> | |
61 | #endif | |
62 | #endif | |
63 | #endif | |
64 | #endif | |
65 | // _WX_CW__ |