2005-05-04 18:57:50 +00: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 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
|
|
|
|
2006-05-09 14:26:48 +00:00
|
|
|
// defined if the compiler does not want the classname repeated for inlines
|
|
|
|
// within a class definition
|
|
|
|
#define WX_COMP_INLINE_NO_CLASS
|
1999-01-01 16:14:00 +00:00
|
|
|
|
2006-01-18 14:13:20 +00:00
|
|
|
#if __MWERKS__ >= 0x2400 && __MWERKS__ < 0x3200
|
|
|
|
#pragma old_argmatch on
|
2000-12-10 10:17:00 +00:00
|
|
|
#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__)
|
2006-05-09 14:26:48 +00:00
|
|
|
/* Set to 0 if you don't want to use precompiled MacHeaders */
|
|
|
|
#define USE_PRECOMPILED_MAC_HEADERS 0
|
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
|
2006-05-09 14:26:48 +00:00
|
|
|
|
|
|
|
/* CW8.3+ has mbstate_t */
|
|
|
|
#if defined(__MACH__) && __MWERKS__ < 0x3003
|
|
|
|
typedef int mbstate_t;
|
|
|
|
#define _MBSTATE_T
|
2002-01-11 13:49:41 +00:00
|
|
|
#endif
|
2006-05-09 14:26:48 +00:00
|
|
|
|
2006-10-29 20:17:29 +00:00
|
|
|
/* CW8.3+ has ssize_t */
|
|
|
|
#if defined(__MACH__) && __MWERKS__ >= 0x3003
|
2006-01-18 14:13:20 +00:00
|
|
|
#define HAVE_SSIZE_T
|
2006-05-09 14:26:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <mslconfig>
|
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
|
|
|
|