2004-09-24 14:32:35 +00:00
|
|
|
#define MSL_USE_PRECOMPILED_HEADERS 0
|
2004-03-27 06:40:58 +00:00
|
|
|
#if __WXDEBUG__
|
|
|
|
// mac os assert levels
|
|
|
|
#define DEBUG 1
|
|
|
|
#define DEBUG_INTERNAL 1
|
|
|
|
#endif
|
1999-01-01 16:14:00 +00:00
|
|
|
#if !defined( __MWERKS__ )
|
|
|
|
#error "this file is only for builds with Metrowerks CodeWarrior"
|
2004-09-24 14:32:35 +00:00
|
|
|
#endif
|
1999-01-01 16:14:00 +00: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 18:14:08 +00:00
|
|
|
#if __MWERKS__ >= 0x2400 && __MWERKS__ <= 0x3200
|
2000-12-10 10:17:00 +00:00
|
|
|
#pragma old_argmatch on
|
|
|
|
#endif
|
|
|
|
|
2003-03-28 19:18:51 +00:00
|
|
|
#if (__MWERKS__ < 0x0900) || macintosh || __MACH__
|
1999-01-01 16:14:00 +00:00
|
|
|
#define __MAC__
|
|
|
|
#define __WXMAC__
|
|
|
|
#elif (__MWERKS__ >= 0x0900) && __INTEL__
|
2002-05-09 22:34:44 +00:00
|
|
|
#define WIN32
|
|
|
|
#define _WINDOWS
|
1999-01-01 16:14:00 +00:00
|
|
|
#define __WXMSW__
|
|
|
|
#define __WINDOWS__
|
|
|
|
#define __WIN95__
|
2002-05-09 22:34:44 +00:00
|
|
|
#define __WIN32__
|
1999-01-01 16:14:00 +00:00
|
|
|
#define STRICT
|
|
|
|
#define NOMINMAX
|
|
|
|
#elif __BEOS__
|
|
|
|
#include <ansi_prefix.be.h>
|
|
|
|
#include <Be.h>
|
2004-09-24 14:32:35 +00:00
|
|
|
#else
|
1999-01-01 16:14:00 +00:00
|
|
|
#error unknown MW compiler
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __WXMSW__
|
|
|
|
#include <ansi_prefix.win32.h>
|
1999-08-20 15:36:30 +00:00
|
|
|
#include <ansi_parms.h>
|
1999-11-05 09:16:09 +00:00
|
|
|
#ifdef __MWERKS__
|
2002-05-09 22:34:44 +00:00
|
|
|
#if defined( __MSL__ ) && __MSL__ >= 0x5012 && __MSL__ < 0x7000
|
2004-09-24 14:32:35 +00:00
|
|
|
#define fileno _fileno
|
|
|
|
#define fdopen _fdopen
|
|
|
|
#define tell _tell
|
1999-08-20 15:36:30 +00:00
|
|
|
#endif
|
1999-11-05 09:16:09 +00:00
|
|
|
#endif
|
1999-01-01 16:14:00 +00:00
|
|
|
#elif defined( __WXMAC__)
|
2004-09-24 14:32:35 +00:00
|
|
|
#define USE_PRECOMPILED_MAC_HEADERS 0 /*Set to 0 if you don't want to use precompiled MacHeaders*/
|
2002-08-24 06:55:46 +00:00
|
|
|
#define ACCESSOR_CALLS_ARE_FUNCTIONS 1
|
2003-03-28 19:18:51 +00:00
|
|
|
#define OPAQUE_TOOLBOX_STRUCTS 1
|
|
|
|
#ifdef __MACH__
|
2004-09-24 14:32:35 +00:00
|
|
|
#include <ansi_prefix.mach.h>
|
|
|
|
#include <msl_c_version.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#undef WCHAR_MAX
|
|
|
|
#include <machine/ansi.h>
|
2003-03-28 19:18:51 +00:00
|
|
|
#else
|
|
|
|
#include <ansi_prefix.mac.h>
|
2002-01-11 13:49:41 +00:00
|
|
|
#endif
|
2004-09-24 14:32:35 +00:00
|
|
|
// for getting the correct expat includes
|
2003-07-24 10:44:41 +00:00
|
|
|
#define MACOS_CLASSIC
|
|
|
|
/*
|
|
|
|
#include <MacTypes.h>
|
2004-09-24 14:32:35 +00: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 16:14:00 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define USE_DEFINE
|
1999-11-05 09:16:09 +00:00
|
|
|
|