Remove obsolete header used only with CodeWarrior MetroWerks compiler.
This compiler doesn't exist for modern OS X systems, no need to have the headers used only with it as they just clatter the include directory and confuse various tools parsing wx headers. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71090 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
589046c0bd
commit
0408c49fb9
@ -1,65 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wx_cw.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include <wx_PPC++_prof.mch>
|
|
||||||
#elif __INTEL__
|
|
||||||
#include <wx_x86++_prof.mch>
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include <wx_cfm++_prof.mch>
|
|
||||||
#else
|
|
||||||
#include <wx_68k++_prof.mch>
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include <wx_PPC_prof.mch>
|
|
||||||
#elif __INTEL__
|
|
||||||
#include <wx_x86_prof.mch>
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include <wx_cfm_prof.mch>
|
|
||||||
#else
|
|
||||||
#include <wx_68k_prof.mch>
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include <wx_PPC++.mch>
|
|
||||||
#elif __INTEL__
|
|
||||||
#include <wx_x86++.mch>
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include <wx_cfm++.mch>
|
|
||||||
#else
|
|
||||||
#include <wx_68k++.mch>
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include <wx_PPC.mch>
|
|
||||||
#elif __INTEL__
|
|
||||||
#include <wx_x86.mch>
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include <wx_cfm.mch>
|
|
||||||
#else
|
|
||||||
#include <wx_68k.mch>
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,88 +0,0 @@
|
|||||||
/*
|
|
||||||
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
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define MSL_USE_PRECOMPILED_HEADERS 0
|
|
||||||
#if __WXDEBUG__
|
|
||||||
// mac os assert levels
|
|
||||||
#define DEBUG 1
|
|
||||||
#define DEBUG_INTERNAL 1
|
|
||||||
#endif
|
|
||||||
#if !defined( __MWERKS__ )
|
|
||||||
#error "this file is only for builds with Metrowerks CodeWarrior"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// defined if the compiler does not want the classname repeated for inlines
|
|
||||||
// within a class definition
|
|
||||||
#define WX_COMP_INLINE_NO_CLASS
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400 && __MWERKS__ < 0x3200
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if (__MWERKS__ < 0x0900) || macintosh || __MACH__
|
|
||||||
#define __MAC__
|
|
||||||
#define __WXMAC__
|
|
||||||
#elif (__MWERKS__ >= 0x0900) && __INTEL__
|
|
||||||
#define WIN32
|
|
||||||
#define _WINDOWS
|
|
||||||
#define __WXMSW__
|
|
||||||
#define __WINDOWS__
|
|
||||||
#define __WIN95__
|
|
||||||
#define __WIN32__
|
|
||||||
#define STRICT
|
|
||||||
#define NOMINMAX
|
|
||||||
#elif __BEOS__
|
|
||||||
#include <ansi_prefix.be.h>
|
|
||||||
#include <Be.h>
|
|
||||||
#else
|
|
||||||
#error unknown MW compiler
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __WXMSW__
|
|
||||||
#include <ansi_prefix.win32.h>
|
|
||||||
#include <ansi_parms.h>
|
|
||||||
#ifdef __MWERKS__
|
|
||||||
#if defined( __MSL__ ) && __MSL__ >= 0x5012 && __MSL__ < 0x7000
|
|
||||||
#define fileno _fileno
|
|
||||||
#define fdopen _fdopen
|
|
||||||
#define tell _tell
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#elif defined( __WXMAC__)
|
|
||||||
/* Set to 0 if you don't want to use precompiled MacHeaders */
|
|
||||||
#define USE_PRECOMPILED_MAC_HEADERS 0
|
|
||||||
#define ACCESSOR_CALLS_ARE_FUNCTIONS 1
|
|
||||||
#define OPAQUE_TOOLBOX_STRUCTS 1
|
|
||||||
|
|
||||||
/* CW8.3+ has mbstate_t */
|
|
||||||
#if defined(__MACH__) && __MWERKS__ < 0x3003
|
|
||||||
typedef int mbstate_t;
|
|
||||||
#define _MBSTATE_T
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* CW8.3+ has ssize_t */
|
|
||||||
#if defined(__MACH__) && __MWERKS__ >= 0x3003
|
|
||||||
#define HAVE_SSIZE_T
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <mslconfig>
|
|
||||||
// for getting the correct expat includes
|
|
||||||
#define MACOS_CLASSIC
|
|
||||||
/*
|
|
||||||
#include <MacTypes.h>
|
|
||||||
#if UNIVERSAL_INTERFACES_VERSION < 0x0340
|
|
||||||
#error "please update to Apple's lastest universal headers from http://developer.apple.com/sdk/"
|
|
||||||
#endif
|
|
||||||
*/
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define USE_DEFINE
|
|
||||||
|
|
@ -1,46 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wx_cw_d.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds (Debug)
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400 && __MWERKS__ < 0x3200
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#error "profiling is not supported in debug versions"
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include <wx_PPC++_d.mch>
|
|
||||||
#elif __INTEL__
|
|
||||||
#include <wx_x86++_d.mch>
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include <wx_cfm++_d.mch>
|
|
||||||
#else
|
|
||||||
#include <wx_68k++_d.mch>
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include <wx_PPC_d.mch>
|
|
||||||
#elif __INTEL__
|
|
||||||
#include <wx_x86_d.mch>
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include <wx_cfm_d.mch>
|
|
||||||
#else
|
|
||||||
#include <wx_68k_d.mch>
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,49 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wx_cwc.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400 && __MWERKS__ < 0x3200
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wx_Mach++_prof.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wx_Carbon++_prof.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wx_Mach_prof.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wx_Carbon_prof.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wx_Mach++.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wx_Carbon++.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wx_Mach.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wx_Carbon.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,38 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wx_cwc_d.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds (Debug)
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400 && __MWERKS__ < 0x3200
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#error "profiling is not supported in debug versions"
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wx_Mach++_d.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wx_Carbon++_d.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wx_Mach_d.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wx_Carbon_d.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,66 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wx_cwcocoa.h
|
|
||||||
// Purpose: Metrowerks Prefix Header File (wxCocoa Release)
|
|
||||||
// Author: Tommy Tian (tommy.tian@webex.com)
|
|
||||||
// Modified by: David Elliott
|
|
||||||
// Created: 10/22/2004
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Tommy Tian
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW_COCOA__
|
|
||||||
#define _WX_CW_COCOA__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400 && __MWERKS__ <= 0x3200
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#ifdef __OBJC__
|
|
||||||
#if __mwlinker__
|
|
||||||
#include "wx_cocoaMacOSXmm_prof.mch"
|
|
||||||
#else
|
|
||||||
#include "wx_cocoaMach-Omm_prof.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __mwlinker__
|
|
||||||
#include "wx_cocoaMacOSX++_prof.mch"
|
|
||||||
#else
|
|
||||||
#include "wx_cocoaMach-O++_prof.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __mwlinker__
|
|
||||||
#include "wx_cocoaMacOSX_prof.mch"
|
|
||||||
#else
|
|
||||||
#include "wx_cocoaMach-O_prof.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#ifdef __OBJC__
|
|
||||||
#if __mwlinker__
|
|
||||||
#include "wx_cocoaMacOSXmm.mch"
|
|
||||||
#else
|
|
||||||
#include "wx_cocoaMach-Omm.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __mwlinker__
|
|
||||||
#include "wx_cocoaMacOSX++.mch"
|
|
||||||
#else
|
|
||||||
#include "wx_cocoaMach-O++.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __mwlinker__
|
|
||||||
#include "wx_cocoaMacOSX.mch"
|
|
||||||
#else
|
|
||||||
#include "wx_cocoaMach-O.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
// _WX_CW_COCOA__
|
|
@ -1,85 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wx_cwcocoa_cm.h
|
|
||||||
// Purpose: Metrowerks wxCocoa PCH common definitions
|
|
||||||
// Author: Tommy Tian (tommy.tian@webex.com)
|
|
||||||
// Modified by:
|
|
||||||
// Created: 10/04/2004
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Tommy Tian
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#define MSL_USE_PRECOMPILED_HEADERS 0
|
|
||||||
#if __WXDEBUG__
|
|
||||||
// mac os assert levels
|
|
||||||
#define DEBUG 1
|
|
||||||
#define DEBUG_INTERNAL 1
|
|
||||||
#endif
|
|
||||||
#if !defined( __MWERKS__ )
|
|
||||||
#error "this file is only for builds with Metrowerks CodeWarrior"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define WX_COMP_INLINE_NO_CLASS // defined if the compiler does not want the classname repeated for inlines within a class definition
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400 && __MWERKS__ <= 0x3200
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if (__MWERKS__ < 0x0900) || macintosh || __MACH__
|
|
||||||
#define __MAC__
|
|
||||||
#define __WXCOCOA__
|
|
||||||
#elif (__MWERKS__ >= 0x0900) && __INTEL__
|
|
||||||
#define WIN32
|
|
||||||
#define _WINDOWS
|
|
||||||
#define __WXMSW__
|
|
||||||
#define __WINDOWS__
|
|
||||||
#define __WIN95__
|
|
||||||
#define __WIN32__
|
|
||||||
#define STRICT
|
|
||||||
#define NOMINMAX
|
|
||||||
#elif __BEOS__
|
|
||||||
#include <ansi_prefix.be.h>
|
|
||||||
#include <Be.h>
|
|
||||||
#else
|
|
||||||
#error unknown MW compiler
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __WXMSW__
|
|
||||||
#include <ansi_prefix.win32.h>
|
|
||||||
#include <ansi_parms.h>
|
|
||||||
#ifdef __MWERKS__
|
|
||||||
#if defined( __MSL__ ) && __MSL__ >= 0x5012 && __MSL__ < 0x7000
|
|
||||||
#define fileno _fileno
|
|
||||||
#define fdopen _fdopen
|
|
||||||
#define tell _tell
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#elif defined( __WXMAC__)
|
|
||||||
#define USE_PRECOMPILED_MAC_HEADERS 0 /*Set to 0 if you don't want to use precompiled MacHeaders*/
|
|
||||||
#define ACCESSOR_CALLS_ARE_FUNCTIONS 1
|
|
||||||
#define OPAQUE_TOOLBOX_STRUCTS 1
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include <ansi_prefix.mach.h>
|
|
||||||
#include <msl_c_version.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
#undef WCHAR_MAX
|
|
||||||
#include <machine/ansi.h>
|
|
||||||
#else
|
|
||||||
#include <ansi_prefix.mac.h>
|
|
||||||
#endif
|
|
||||||
// for getting the correct expat includes
|
|
||||||
#define MACOS_CLASSIC
|
|
||||||
/*
|
|
||||||
#include <MacTypes.h>
|
|
||||||
#if UNIVERSAL_INTERFACES_VERSION < 0x0340
|
|
||||||
#error "please update to Apple's lastest universal headers from http://developer.apple.com/sdk/"
|
|
||||||
#endif
|
|
||||||
*/
|
|
||||||
#elif defined( __WXCOCOA__) //tommy
|
|
||||||
#if defined(__OBJC__)
|
|
||||||
#include "CocoaHeaders.m"
|
|
||||||
#endif //defined(__OBJC__)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define USE_DEFINE
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wx_cwcocoa_d.h
|
|
||||||
// Purpose: Metrowerks Prefix Header File (wxCocoa Debug)
|
|
||||||
// Author: Tommy Tian (tommy.tian@webex.com)
|
|
||||||
// Modified by: David Elliott
|
|
||||||
// Created: 10/04/2004
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Tommy Tian
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef _WX_CW_COCOA__
|
|
||||||
#define _WX_CW_COCOA__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400 && __MWERKS__ <= 0x3200
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#error "profiling is not supported in debug versions"
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#ifdef __OBJC__
|
|
||||||
#if __mwlinker__
|
|
||||||
#include "wx_cocoaMacOSXmm_d.mch"
|
|
||||||
#else
|
|
||||||
#include "wx_cocoaMach-Omm_d.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __mwlinker__
|
|
||||||
#include "wx_cocoaMacOSX++_d.mch"
|
|
||||||
#else
|
|
||||||
#include "wx_cocoaMach-O++_d.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __mwlinker__
|
|
||||||
#include "wx_cocoaMacOSX_d.mch"
|
|
||||||
#else
|
|
||||||
#include "wx_cocoaMach-O_d.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
// _WX_CW_COCOA__
|
|
@ -1,46 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wx_cwu_d.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds (Debug)
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#error "profiling is not supported in debug versions"
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include <wx_PPCu++_d.mch>
|
|
||||||
#elif __INTEL__
|
|
||||||
#include <wx_x86u++_d.mch>
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include <wx_cfmu++_d.mch>
|
|
||||||
#else
|
|
||||||
#include <wx_68ku++_d.mch>
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include <wx_PPCu_d.mch>
|
|
||||||
#elif __INTEL__
|
|
||||||
#include <wx_x86u_d.mch>
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include <wx_cfmu_d.mch>
|
|
||||||
#else
|
|
||||||
#include <wx_68ku_d.mch>
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,65 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wxshlb_cw.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlb_PPC++_prof.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlb_x86++_prof.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlb_cfm++_prof.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlb_68k++_prof.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlb_PPC_prof.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlb_x86_prof.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlb_cfm_prof.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlb_68k_prof.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlb_PPC++.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlb_x86++.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlb_cfm++.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlb_68k++.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlb_PPC.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlb_x86.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlb_cfm.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlb_68k.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,46 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wxshlb_cw_d.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds (Debug)
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#error "profiling is not supported in debug versions"
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlb_PPC++_d.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlb_x86++_d.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlb_cfm++_d.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlb_68k++_d.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlb_PPC_d.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlb_x86_d.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlb_cfm_d.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlb_68k_d.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,45 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wxshlb_cwc.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlb_Carbon++_prof.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlb_Carbon_prof.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __MACH__
|
|
||||||
#include "wxshlb_Mach++.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wxshlb_Carbon++.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __MACH__
|
|
||||||
#include "wxshlb_Mach.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wxshlb_Carbon.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,38 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wxshlb_cwc_d.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds (Debug)
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#error "profiling is not supported in debug versions"
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wxshlb_Mach++_d.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wxshlb_Carbon++_d.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wxshlb_Mach_d.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wxshlb_Carbon_d.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,65 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wxshlba_cw.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlba_PPC++_prof.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlba_x86++_prof.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlba_cfm++_prof.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlba_68k++_prof.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlba_PPC_prof.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlba_x86_prof.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlba_cfm_prof.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlba_68k_prof.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlba_PPC++.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlba_x86++.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlba_cfm++.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlba_68k++.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlba_PPC.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlba_x86.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlba_cfm.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlba_68k.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,46 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wxshlba_cw_d.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds (Debug)
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#error "profiling is not supported in debug versions"
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlba_PPC++_d.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlba_x86++_d.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlba_cfm++_d.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlba_68k++_d.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlba_PPC_d.mch"
|
|
||||||
#elif __INTEL__
|
|
||||||
#include "wxshlba_x86_d.mch"
|
|
||||||
#elif __CFM68K__
|
|
||||||
#include "wxshlba_cfm_d.mch"
|
|
||||||
#else
|
|
||||||
#include "wxshlba_68k_d.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,45 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wxshlba_cwc.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlba_Carbon++_prof.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#if __POWERPC__
|
|
||||||
#include "wxshlba_Carbon_prof.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wxshlba_Mach++.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wxshlba_Carbon++.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wxshlba_Mach.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wxshlba_Carbon.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
@ -1,38 +0,0 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: wx/wxshlba_cwc_d.h
|
|
||||||
// Purpose: wxWidgets definitions for CodeWarrior builds (Debug)
|
|
||||||
// Author: Stefan Csomor
|
|
||||||
// Modified by:
|
|
||||||
// Created: 12/10/98
|
|
||||||
// RCS-ID: $Id$
|
|
||||||
// Copyright: (c) Stefan Csomor
|
|
||||||
// Licence: wxWindows licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
#ifndef _WX_CW__
|
|
||||||
#define _WX_CW__
|
|
||||||
|
|
||||||
#if __MWERKS__ >= 0x2400
|
|
||||||
#pragma old_argmatch on
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __option(profile)
|
|
||||||
#error "profiling is not supported in debug versions"
|
|
||||||
#else
|
|
||||||
#ifdef __cplusplus
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wxshlba_Mach++_d.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wxshlba_Carbon++_d.mch"
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifdef __MACH__
|
|
||||||
#include "wxshlba_Mach_d.mch"
|
|
||||||
#elif __POWERPC__
|
|
||||||
#include "wxshlba_Carbon_d.mch"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
// _WX_CW__
|
|
Loading…
Reference in New Issue
Block a user