1/////////////////////////////////////////////////////////////////////////////
2// Name:        wx_cw.h
3// Purpose:     wxWidgets definitions for CodeWarrior builds
4// Author:      Stefan Csomor
5// Modified by:
6// Created:     12/10/98
7// RCS-ID:      $Id: wxshlb_cw.h 33744 2005-04-19 10:06:30Z SC $
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 "wxshlb_PPC++_prof.mch"
23    #elif __INTEL__
24        #include "wxshlb_x86++_prof.mch"
25    #elif __CFM68K__
26        #include "wxshlb_cfm++_prof.mch"
27    #else
28        #include "wxshlb_68k++_prof.mch"
29    #endif
30#else
31    #if __POWERPC__
32        #include "wxshlb_PPC_prof.mch"
33    #elif __INTEL__
34        #include "wxshlb_x86_prof.mch"
35    #elif __CFM68K__
36        #include "wxshlb_cfm_prof.mch"
37    #else
38        #include "wxshlb_68k_prof.mch"
39    #endif
40#endif
41#else
42#ifdef __cplusplus
43    #if __POWERPC__
44        #include "wxshlb_PPC++.mch"
45    #elif __INTEL__
46        #include "wxshlb_x86++.mch"
47    #elif __CFM68K__
48        #include "wxshlb_cfm++.mch"
49    #else
50        #include "wxshlb_68k++.mch"
51    #endif
52#else
53    #if __POWERPC__
54        #include "wxshlb_PPC.mch"
55    #elif __INTEL__
56        #include "wxshlb_x86.mch"
57    #elif __CFM68K__
58        #include "wxshlb_cfm.mch"
59    #else
60        #include "wxshlb_68k.mch"
61    #endif
62#endif
63#endif
64#endif
65    // _WX_CW__
66