2005-05-04 14:57:50 -04:00
|
|
|
/*
|
|
|
|
Name: wx/wx_cw_cm.h
|
|
|
|
Purpose: wxWidgets definitions for CodeWarrior builds
|
|
|
|
Author: Stefan Csomor
|
|
|
|
Modified by:
|
|
|
|
Created:
|
|
|
|
RCS-ID: $Id$
|
|
|
|
Copyright: (c) Stefan Csomor
|
|
|
|
Licence: wxWindows licence
|
|
|
|
*/
|
|
|
|
|
2004-09-24 10:32:35 -04:00
|
|
|
#define MSL_USE_PRECOMPILED_HEADERS 0
|
2004-03-27 01:40:58 -05:00
|
|
|
#if __WXDEBUG__
|
|
|
|
// mac os assert levels
|
|
|
|
#define DEBUG 1
|
|
|
|
#define DEBUG_INTERNAL 1
|
|
|
|
#endif
|
1999-01-01 11:14:00 -05:00
|
|
|
#if !defined( __MWERKS__ )
|
|
|
|
#error "this file is only for builds with Metrowerks CodeWarrior"
|
2004-09-24 10:32:35 -04:00
|
|
|
#endif
|
1999-01-01 11:14:00 -05:00
|
|
|
|
|
|
|
#define WX_COMP_INLINE_NO_CLASS // defined if the compiler does not want the classname repeated for inlines within a class definition
|
|
|
|
|
2004-01-20 13:14:08 -05:00
|
|
|
#if __MWERKS__ >= 0x2400 && __MWERKS__ <= 0x3200
|
2000-12-10 05:17:00 -05:00
|
|
|
#pragma old_argmatch on
|
|
|
|
#endif
|
|
|
|
|
2003-03-28 14:18:51 -05:00
|
|
|
#if (__MWERKS__ < 0x0900) || macintosh || __MACH__
|
1999-01-01 11:14:00 -05:00
|
|
|
#define __MAC__
|
|
|
|
#define __WXMAC__
|
|
|
|
#elif (__MWERKS__ >= 0x0900) && __INTEL__
|
2002-05-09 18:34:44 -04:00
|
|
|
#define WIN32
|
|
|
|
#define _WINDOWS
|
1999-01-01 11:14:00 -05:00
|
|
|
#define __WXMSW__
|
|
|
|
#define __WINDOWS__
|
|
|
|
#define __WIN95__
|
2002-05-09 18:34:44 -04:00
|
|
|
#define __WIN32__
|
1999-01-01 11:14:00 -05:00
|
|
|
#define STRICT
|
|
|
|
#define NOMINMAX
|
|
|
|
#elif __BEOS__
|
|
|
|
#include <ansi_prefix.be.h>
|
|
|
|
#include <Be.h>
|
2004-09-24 10:32:35 -04:00
|
|
|
#else
|
1999-01-01 11:14:00 -05:00
|
|
|
#error unknown MW compiler
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __WXMSW__
|
|
|
|
#include <ansi_prefix.win32.h>
|
1999-08-20 11:36:30 -04:00
|
|
|
#include <ansi_parms.h>
|
1999-11-05 04:16:09 -05:00
|
|
|
#ifdef __MWERKS__
|
2002-05-09 18:34:44 -04:00
|
|
|
#if defined( __MSL__ ) && __MSL__ >= 0x5012 && __MSL__ < 0x7000
|
2004-09-24 10:32:35 -04:00
|
|
|
#define fileno _fileno
|
|
|
|
#define fdopen _fdopen
|
|
|
|
#define tell _tell
|
1999-08-20 11:36:30 -04:00
|
|
|
#endif
|
1999-11-05 04:16:09 -05:00
|
|
|
#endif
|
1999-01-01 11:14:00 -05:00
|
|
|
#elif defined( __WXMAC__)
|
2004-09-24 10:32:35 -04:00
|
|
|
#define USE_PRECOMPILED_MAC_HEADERS 0 /*Set to 0 if you don't want to use precompiled MacHeaders*/
|
2002-08-24 02:55:46 -04:00
|
|
|
#define ACCESSOR_CALLS_ARE_FUNCTIONS 1
|
2003-03-28 14:18:51 -05:00
|
|
|
#define OPAQUE_TOOLBOX_STRUCTS 1
|
|
|
|
#ifdef __MACH__
|
2005-05-09 12:07:06 -04:00
|
|
|
typedef int mbstate_t;
|
|
|
|
#define _MBSTATE_T
|
2002-01-11 08:49:41 -05:00
|
|
|
#endif
|
2005-05-09 12:07:06 -04:00
|
|
|
#include <mslconfig>
|
2004-09-24 10:32:35 -04:00
|
|
|
// for getting the correct expat includes
|
2003-07-24 06:44:41 -04:00
|
|
|
#define MACOS_CLASSIC
|
|
|
|
/*
|
|
|
|
#include <MacTypes.h>
|
2004-09-24 10:32:35 -04:00
|
|
|
#if UNIVERSAL_INTERFACES_VERSION < 0x0340
|
|
|
|
#error "please update to Apple's lastest universal headers from http://developer.apple.com/sdk/"
|
|
|
|
#endif
|
|
|
|
*/
|
1999-01-01 11:14:00 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define USE_DEFINE
|
1999-11-05 04:16:09 -05:00
|
|
|
|