From: Kevin Ollivier Date: Thu, 12 Mar 2009 16:23:22 +0000 (+0000) Subject: CodeWarrior has been discontinued on Mac for years, and none of the (manually maintai... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fc5e8e07f795e2c5a7e1b3bef1e9e97e1910ef0d CodeWarrior has been discontinued on Mac for years, and none of the (manually maintained) project files have been updated in at least 3 years, so remove CodeWarrior support from the tree. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59493 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/osx/M5build.applescript b/docs/osx/M5build.applescript deleted file mode 100644 index 0bd0592106..0000000000 --- a/docs/osx/M5build.applescript +++ /dev/null @@ -1,228 +0,0 @@ ------------------------------------------------------------------------------ --- Name: docs/mac/M5build.applescript --- Purpose: Automatic build of projects with CodeWarrior 5 --- Author: Gilles Depeyrot --- Modified by: --- Created: 06.10.2001 --- RCS-ID: $Id$ --- Copyright: (c) 2001 Gilles Depeyrot --- Licence: wxWindows licence ------------------------------------------------------------------------------ --- --- This AppleScript automatically recurses through the selected folder looking for --- and building CodeWarrior projects. --- To use this script, simply open it with the 'Script Editor' and run it. --- - --- --- Suffix used to recognize CodeWarrior project files --- -property gProjectSuffix : "M5.mcp" - --- --- Values used to create the log file --- -property gEol : " -" -property gSeparator : "-------------------------------------------------------------------------------" & gEol - --- --- Project and build success count --- -set theProjectCount to 0 -set theProjectSuccessCount to 0 - --- --- Default log file name --- -set theDate to (day of (current date)) & "/" & GetMonthIndex(current date) & "/" & (year of (current date)) -set theLogFileName to "build-" & theDate & ".log" - --- --- Ask the user to select the wxWindows samples folder --- -set theFolder to choose folder with prompt "Select the folder in which to build the projects" - --- --- Ask the user to choose the build log file --- -set theLogFile to choose file name with prompt "Save the build log file" default name theLogFileName - --- --- Open the log file to record the build log --- -set theLogFileRef to open for access theLogFile with write permission - --- --- Write log file header --- -write gSeparator starting at 0 to theLogFileRef -write "Build log" & gEol to theLogFileRef -write gSeparator to theLogFileRef -write "start on " & ((current date) as string) & gEol to theLogFileRef -write gSeparator to theLogFileRef -write "building projects in '" & (theFolder as string) & "'" & gEol to theLogFileRef -write gSeparator to theLogFileRef - --- --- Build or Rebuild targets? --- -set theText to "Build or rebuild projects?" -set theBuild to button returned of (display dialog theText buttons {"Cancel", "Build", "Rebuild"} default button "Rebuild" with icon note) -if theBuild is not equal to "Cancel" then - -- - -- Build which targets? - -- - set theText to theBuild & " Classic or Carbon targets?" - set theType to button returned of (display dialog theText buttons {"Cancel", "Classic", "Carbon"} default button "Carbon" with icon note) - if theType is not equal to "Cancel" then - -- - -- Build Debug or Release targets? - -- - set theText to theBuild & " " & theType & " Debug or " & theType & " Release targets?" - set theOption to button returned of (display dialog theText buttons {"Cancel", "Release", "Debug"} default button "Debug" with icon note) - if theOption is not equal to "Cancel" then - set theTarget to theType & " " & theOption - - write "building project targets '" & theTarget & "'" & gEol to theLogFileRef - write gSeparator to theLogFileRef - - BuildProjects(theLogFileRef, theFolder, theTarget, theBuild is equal to "Rebuild") - - end if - end if -end if - --- --- Write log file footer --- -write "successful build of " & theProjectSuccessCount & " projects out of " & theProjectCount & gEol to theLogFileRef -write gSeparator to theLogFileRef -write "end on " & ((current date) as string) & gEol to theLogFileRef -write gSeparator to theLogFileRef --- --- Close the log file --- -close access theLogFileRef - --- --- BuildProjects --- -on BuildProjects(inLogFileRef, inFolder, inTarget, inRebuild) - global theProjectCount, theProjectSuccessCount - - tell application "Finder" to update inFolder - - try - tell application "Finder" to set theProject to ((the first file of inFolder whose name ends with gProjectSuffix) as string) - on error - set theProject to "" - end try - - if theProject is not "" then - set theProjectCount to theProjectCount + 1 - - write "building project '" & theProject & "'" & gEol to inLogFileRef - - tell application "CodeWarrior IDE 4.0.4" - -- - -- Open the project in CodeWarrior - -- - open theProject - -- - -- Change to the requested target - -- - Set Current Target inTarget - -- - -- Remove object code if rebuild requested - -- - if inRebuild then - Remove Binaries - end if - -- - -- Build/Rebuild the selected target - -- - set theBuildInfo to Make Project with ExternalEditor - -- - -- Close the project - -- - Close Project - end tell - -- - -- Report errors to build log file - -- - write gEol to inLogFileRef - ReportBuildInfo(inLogFileRef, theBuildInfo) - write gSeparator to inLogFileRef - end if - - tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data" - repeat with theFolder in theSubFolders - BuildProjects(inLogFileRef, theFolder, inTarget, inRebuild) - end repeat - -end BuildProjects - --- --- ReportBuildInfo --- -on ReportBuildInfo(inLogFileRef, inBuildInfo) - global theProjectCount, theProjectSuccessCount - - set theErrorCount to 0 - set theWarningCount to 0 - - repeat with theInfo in inBuildInfo - tell application "CodeWarrior IDE 4.0.4" - set theKind to ((messageKind of theInfo) as string) - - tell me to write "*** " & theKind & " *** " & message of theInfo & gEol to inLogFileRef - try - set theFile to ((file of theInfo) as string) - on error - set theFile to "" - end try - if theFile is not "" then - tell me to write theFile & " line " & lineNumber of theInfo & gEol to inLogFileRef - end if - tell me to write gEol to inLogFileRef - end tell - - if MessageKindIsError(theKind) then - set theErrorCount to theErrorCount + 1 - else - set theWarningCount to theWarningCount + 1 - end if - end repeat - - if theErrorCount is 0 then - set theProjectSuccessCount to theProjectSuccessCount + 1 - write "build succeeded with " & theWarningCount & " warning(s)" & gEol to inLogFileRef - else - write "build failed with " & theErrorCount & " error(s) and " & theWarningCount & " warning(s)" & gEol to inLogFileRef - end if -end ReportBuildInfo - --- --- MessageKindIsError --- -on MessageKindIsError(inKind) - if inKind is "compiler error" or inKind is "linker error" or inKind is "generic error" then - return true - else - return false - end if -end MessageKindIsError - --- --- GetMonthIndex --- -on GetMonthIndex(inDate) - set theMonth to the month of inDate - set theMonthList to {January, February, March, April, May, June, July, August, September, October, November, December} - repeat with i from 1 to the number of items in theMonthList - if theMonth is item i of theMonthList then - return i - end if - end repeat -end GetMonthIndex diff --git a/docs/osx/M5converteol.sh b/docs/osx/M5converteol.sh deleted file mode 100755 index 7cc1aa8aef..0000000000 --- a/docs/osx/M5converteol.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -#----------------------------------------------------------------------------- -#-- Name: docs/mac/M5converteol.sh -#-- Purpose: Convert end-of-lines in CodeWarrior exported XML project files -#-- Author: Gilles Depeyrot -#-- Modified by: -#-- Created: 07.01.2002 -#-- RCS-ID: $Id$ -#-- Copyright: (c) 2001 Gilles Depeyrot -#-- Licence: wxWindows licence -#----------------------------------------------------------------------------- - -echo "Searching for xml files..." -files=`find ../.. -name "*.xml" -print` - -for f in $files -do - cat $f | tr '\r' '\n' > $f.new - if [ "`diff -q $f $f.new`" != "" ] ; then - mv $f.new $f - echo "Converted $f" - else - rm $f.new - fi -done diff --git a/docs/osx/M5mcp2xml.applescript b/docs/osx/M5mcp2xml.applescript deleted file mode 100644 index 9a7179c4f5..0000000000 --- a/docs/osx/M5mcp2xml.applescript +++ /dev/null @@ -1,92 +0,0 @@ ------------------------------------------------------------------------------ --- Name: docs/mac/M5mcp2xml.applescript --- Purpose: Automatic export of CodeWarrior 5 projects to XML files --- Author: Gilles Depeyrot --- Modified by: --- Created: 28.11.2001 --- RCS-ID: $Id$ --- Copyright: (c) 2001 Gilles Depeyrot --- Licence: wxWindows licence ------------------------------------------------------------------------------ --- --- This AppleScript automatically recurses through the selected folder looking for --- and exporting CodeWarrior projects to xml files. --- To use this script, simply open it with the 'Script Editor' and run it. --- - --- --- Suffix used to recognize CodeWarrior project files --- -property gProjectSuffix : "M5.mcp" - --- --- Project and build success count --- -set theProjectCount to 0 -set theProjectSuccessCount to 0 - --- --- Ask the user to select the wxWindows samples folder --- -set theFolder to choose folder with prompt "Select the wxWindows folder" - -ExportProjects(theFolder) - -tell me to display dialog "Exported " & theProjectSuccessCount & " projects out of " & theProjectCount - --- --- ExportProjects --- -on ExportProjects(inFolder) - global theProjectCount, theProjectSuccessCount - - tell application "Finder" to update inFolder - - try - tell application "Finder" to set theProject to ((the first file of inFolder whose name ends with gProjectSuffix) as string) - on error - set theProject to "" - end try - - if theProject is not "" then - set theProjectCount to theProjectCount + 1 - - -- save the current text delimiters - set theDelimiters to my text item delimiters - - -- replace the ".mcp" extension with ".xml" - set my text item delimiters to "." - set theList to (every text item of theProject) - set theList to (items 1 thru -2 of theList) - set theExport to (theList as string) & ".xml" - - -- restore the text delimiters - set my text item delimiters to theDelimiters - - tell application "CodeWarrior IDE 4.0.4" - -- - -- Open the project in CodeWarrior - -- - open theProject - -- - -- Export the selected project - -- - try - export project document 1 in theExport - set theProjectSuccessCount to theProjectSuccessCount + 1 - on error number errnum - tell me to display dialog "Error " & errnum & " exporting " & theExport - end try - -- - -- Close the project - -- - Close Project - end tell - end if - - tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data" - repeat with theFolder in theSubFolders - ExportProjects(theFolder) - end repeat - -end ExportProjects diff --git a/docs/osx/M5replace.sh b/docs/osx/M5replace.sh deleted file mode 100755 index 9cbc741794..0000000000 --- a/docs/osx/M5replace.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -#----------------------------------------------------------------------------- -#-- Name: docs/mac/M5replace.sh -#-- Purpose: Replace a string in CodeWarrior exported XML project files -#-- Author: Gilles Depeyrot -#-- Modified by: -#-- Created: 08.01.2002 -#-- RCS-ID: $Id$ -#-- Copyright: (c) 2001 Gilles Depeyrot -#-- Licence: wxWindows licence -#----------------------------------------------------------------------------- - -echo -n "Replace '$1' with '$2' in xml project files? [y/N]" -read ans - -if [ "$ans" != "y" ] ; then - exit -fi - -echo "Searching for xml files..." -files=`find ../.. -name "*.xml" -print` - -for f in $files -do - cat $f | sed -e "s,$1,$2," > $f.new - if [ "`diff -q $f $f.new`" != "" ] ; then - mv $f.new $f - echo "Replaced in $f..." - else - rm $f.new - fi -done diff --git a/docs/osx/M5xml2mcp.applescript b/docs/osx/M5xml2mcp.applescript deleted file mode 100644 index d1eb0e3a1f..0000000000 --- a/docs/osx/M5xml2mcp.applescript +++ /dev/null @@ -1,88 +0,0 @@ ------------------------------------------------------------------------------ --- Name: docs/mac/M5xml2mcp.applescript --- Purpose: Automatic import of CodeWarrior 5 xml files to projects --- Author: Gilles Depeyrot --- Modified by: --- Created: 30.11.2001 --- RCS-ID: $Id$ --- Copyright: (c) 2001 Gilles Depeyrot --- Licence: wxWindows licence ------------------------------------------------------------------------------ --- --- This AppleScript automatically recurses through the selected folder looking for --- and importing CodeWarrior xml files to projects --- To use this script, simply open it with the 'Script Editor' and run it. --- - --- --- Suffix used to recognize CodeWarrior xml files --- -property gXmlSuffix : "M5.xml" - --- --- Project and build success count --- -set theXmlCount to 0 -set theXmlSuccessCount to 0 - --- --- Ask the user to select the wxWindows samples folder --- -set theFolder to choose folder with prompt "Select the wxWindows folder" - -ImportProjects(theFolder) - -tell me to display dialog "Imported " & theXmlSuccessCount & " xml files out of " & theXmlCount buttons {"OK"} - --- --- ImportProjects --- -on ImportProjects(inFolder) - global theXmlCount, theXmlSuccessCount - - tell application "Finder" to update inFolder - - try - tell application "Finder" to set theXml to ((the first file of inFolder whose name ends with gXmlSuffix) as string) - on error - set theXml to "" - end try - - if theXml is not "" then - set theXmlCount to theXmlCount + 1 - - -- save the current text delimiters - set theDelimiters to my text item delimiters - - -- replace the ".xml" extension with ".mcp" - set my text item delimiters to "." - set theList to (every text item of theXml) - set theList to (items 1 thru -2 of theList) - set theImport to (theList as string) & ".mcp" - - -- restore the text delimiters - set my text item delimiters to theDelimiters - - tell application "CodeWarrior IDE 4.0.4" - -- - -- Import the selected xml file - -- - try - make new project document as theImport with data theXml - set theXmlSuccessCount to theXmlSuccessCount + 1 - -- - -- Close the project - -- - Close Project - on error number errnum - tell me to display dialog "Error " & errnum & " importing " & theXml & " to " & theImport - end try - end tell - end if - - tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data" - repeat with theFolder in theSubFolders - ImportProjects(theFolder) - end repeat - -end ImportProjects diff --git a/docs/osx/M8mcp2xml.applescript b/docs/osx/M8mcp2xml.applescript deleted file mode 100755 index fe48727d0b..0000000000 --- a/docs/osx/M8mcp2xml.applescript +++ /dev/null @@ -1,92 +0,0 @@ ------------------------------------------------------------------------------ --- Name: docs/mac/M8mcp2xml.applescript --- Purpose: Automatic export of CodeWarrior 8 projects to XML files --- Author: Gilles Depeyrot --- Modified by: Stefan Csomor for M8 --- Created: 28.11.2001 --- RCS-ID: $Id$ --- Copyright: (c) 2001 Gilles Depeyrot --- Licence: wxWindows licence ------------------------------------------------------------------------------ --- --- This AppleScript automatically recurses through the selected folder looking for --- and exporting CodeWarrior projects to xml files. --- To use this script, simply open it with the 'Script Editor' and run it. --- - --- --- Suffix used to recognize CodeWarrior project files --- -property gProjectSuffix : "M8.mcp" - --- --- Project and build success count --- -set theProjectCount to 0 -set theProjectSuccessCount to 0 - --- --- Ask the user to select the wxWindows samples folder --- -set theFolder to choose folder with prompt "Select the wxWindows folder" - -ExportProjects(theFolder) - -tell me to display dialog "Exported " & theProjectSuccessCount & " projects out of " & theProjectCount - --- --- ExportProjects --- -on ExportProjects(inFolder) - global theProjectCount, theProjectSuccessCount - - tell application "Finder" to update inFolder - - try - tell application "Finder" to set theProject to ((the first file of inFolder whose name ends with gProjectSuffix) as string) - on error - set theProject to "" - end try - - if theProject is not "" then - set theProjectCount to theProjectCount + 1 - - -- save the current text delimiters - set theDelimiters to my text item delimiters - - -- replace the ".mcp" extension with ".xml" - set my text item delimiters to "." - set theList to (every text item of theProject) - set theList to (items 1 thru -2 of theList) - set theExport to (theList as string) & ".xml" - - -- restore the text delimiters - set my text item delimiters to theDelimiters - - tell application "CodeWarrior IDE" - -- - -- Open the project in CodeWarrior - -- - open theProject - -- - -- Export the selected project - -- - try - export project document 1 to theExport - set theProjectSuccessCount to theProjectSuccessCount + 1 - on error number errnum - tell me to display dialog "Error " & errnum & " exporting " & theExport - end try - -- - -- Close the project - -- - Close Project - end tell - end if - - tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data" - repeat with theFolder in theSubFolders - ExportProjects(theFolder) - end repeat - -end ExportProjects diff --git a/docs/osx/M8xml2mcp.applescript b/docs/osx/M8xml2mcp.applescript deleted file mode 100755 index 7fdd1dfce0..0000000000 --- a/docs/osx/M8xml2mcp.applescript +++ /dev/null @@ -1,85 +0,0 @@ ------------------------------------------------------------------------------ --- Name: docs/mac/M8xml2mcp.applescript --- Purpose: Automatic import of CodeWarrior 8 xml files to projects --- Author: Gilles Depeyrot --- Modified by: Stefan Csomor --- Created: 30.11.2001 --- RCS-ID: $Id$ --- Copyright: (c) 2001 Gilles Depeyrot --- Licence: wxWindows licence ------------------------------------------------------------------------------ --- --- This AppleScript automatically recurses through the selected folder looking for --- and importing CodeWarrior xml files to projects --- To use this script, simply open it with the 'Script Editor' and run it. --- - --- --- Suffix used to recognize CodeWarrior xml files --- -property gXmlSuffix : "M8.xml" - --- --- Project and build success count --- -set theXmlCount to 0 -set theXmlSuccessCount to 0 - --- --- Ask the user to select the wxWindows samples folder --- -set theFolder to choose folder with prompt "Select the wxWindows folder" - -ImportProjects(theFolder) - -tell me to display dialog "Imported " & theXmlSuccessCount & " xml files out of " & theXmlCount buttons {"OK"} - --- --- ImportProjects --- -on ImportProjects(inFolder) - global theXmlCount, theXmlSuccessCount - - tell application "Finder" to update inFolder - - tell application "Finder" to set theXmlList to (every file of inFolder whose name ends with gXmlSuffix) - - repeat with theXml in theXmlList - set theXml to theXml as string - set theXmlCount to theXmlCount + 1 - - -- save the current text delimiters - set theDelimiters to my text item delimiters - - -- replace the ".xml" extension with ".mcp" - set my text item delimiters to "." - set theList to (every text item of theXml) - set theList to (items 1 thru -2 of theList) - set theImport to (theList as string) & ".mcp" - - -- restore the text delimiters - set my text item delimiters to theDelimiters - - tell application "CodeWarrior IDE" - -- - -- Import the selected xml file - -- - try - make new project document as theImport with data theXml - set theXmlSuccessCount to theXmlSuccessCount + 1 - -- - -- Close the project - -- - Close Project - on error number errnum - tell me to display dialog "Error " & errnum & " importing " & theXml & " to " & theImport - end try - end tell - end repeat - - tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data" - repeat with theFolder in theSubFolders - ImportProjects(theFolder) - end repeat - -end ImportProjects diff --git a/docs/osx/SetXMLCreator.applescript b/docs/osx/SetXMLCreator.applescript deleted file mode 100644 index c8fba25c9d..0000000000 --- a/docs/osx/SetXMLCreator.applescript +++ /dev/null @@ -1,36 +0,0 @@ ---------------------------------------------------------------------------------- --- Name: docs/mac/SetXMLCreator.applescript --- Purpose: Sets the creator types of the XML files --- Author: Ryan Wilcox --- Modified by: --- Created: 2004-03-30 --- RCS-ID: $Id$ --- Copyright: (c) 2004 Ryan Wilcox --- Licence: wxWindows licence --- --- Press the run button and select the file you need (or, alternatively, save the --- script as an application drag-and-drop the files on top of it). ---------------------------------------------------------------------------------- - -on run - set myFile to choose file - open ({myFile}) -end run - - -on open (fileList) - - repeat with each in fileList - - tell application "Finder" - if name of each contains "M5" or name of each contains "M7" or name of each contains "M8" then - set creator type of each to "CWIE" - set file type of each to "TEXT" - - log "set" - end if - - end tell - end repeat -end open - diff --git a/docs/osx/ansi.diff b/docs/osx/ansi.diff deleted file mode 100644 index 4df4f475f3..0000000000 --- a/docs/osx/ansi.diff +++ /dev/null @@ -1,25 +0,0 @@ ---- ansi.h.old Mon Mar 29 19:47:26 2004 -+++ ansi.h Mon Mar 29 19:55:56 2004 -@@ -38,6 +38,11 @@ - #define _BSD_RUNE_T_ __WCHAR_TYPE__ /* rune_t */ - -+ -+ #ifndef WCHAR_MIN - #define WCHAR_MIN ((wchar_t) 0x80000000U) -+ #endif -+ #ifndef WCHAR_MAX - #define WCHAR_MAX ((wchar_t) 0x7FFFFFFFU) -+ #endif - - typedef wchar_t wint_t; -@@ -49,5 +54,9 @@ - - #ifndef _ANSI_SOURCE -- typedef _BSD_WCHAR_T_ rune_t; -+ #ifndef _BSD_RUNE_T_DEFINED_ -+ #define _BSD_RUNE_T_DEFINED_ -+ typedef _BSD_RUNE_T_ rune_t; -+ #endif -+ /* typedef _BSD_WCHAR_T_ rune_t; */ - #endif - diff --git a/src/wxWindowsClassicM8.xml b/src/wxWindowsClassicM8.xml deleted file mode 100644 index 4707b75b8c..0000000000 --- a/src/wxWindowsClassicM8.xml +++ /dev/null @@ -1,39547 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -]> - - - - - wxlib PPC debug - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:classic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxlib PPC debug - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXPM - FileExtension.xpm - CompilerMW C/C++ PPC - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle1 - MWFrontEnd_C_prefixnamewx/wx_cw_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÄ@ž–@)t - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeLibrary - MWProject_MacOSX_outfilewx_PPC_d.lib - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetype???? - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_PPC_d.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - ::include: - :wx_cw_d.pch - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wx_cw_d.pch++ - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - Text - - - - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :unzip.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - Name - db.cpp - MacOS - Text - Debug - - - Name - dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - Name - colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportAppPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - Library - Debug, WeakImport - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - Library - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC_D.Lib - MacOS - Library - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - Library - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - Text - Debug - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - ::include: - :wx_cw_d.pch - MacOS - - - PathRelative - Project - ::include: - :wx_cw_d.pch++ - MacOS - - - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :unzip.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - Name - db.cpp - MacOS - - - Name - dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - Name - colrdlgg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - - - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportAppPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC_D.Lib - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - wxlib PPC release - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:classic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxlib PPC release - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle1 - MWFrontEnd_C_prefixnamewx/wx_cw.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÄ@ž–@)t - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel2 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeLibrary - MWProject_MacOSX_outfilewx_PPC.lib - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetype???? - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_PPC.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - Text - - - - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :unzip.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :db.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - Name - tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - Text - Debug - - - Name - colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - Name - wx_cw.pch - MacOS - Text - Debug - - - Name - wx_cw.pch++ - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportAppPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - Library - Debug, WeakImport - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC.Lib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - Library - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - Text - Debug - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :unzip.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :db.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - Name - tipdlg.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - - - Name - colrdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - - - Name - metafile.cpp - MacOS - - - Name - wx_cw.pch - MacOS - - - Name - wx_cw.pch++ - MacOS - - - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportAppPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC.Lib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - all targets - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerNone - PreLinker - PostLinker - Targetnameall targets - OutputDirectory - Path: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathsfalse - - - FileMappings - - FileTypeMMPr - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileName - CodeCompletionMacroFileName - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixname - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÄ@ž–@)t - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatGeneric - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeExecutable - MWProject_MacOSX_outfile - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypeMEXE - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeApplication - MWProject_X86_outfileNONAME.EXE - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - - - - - wxlib PPC release - - - wxlib PPC debug - - - wxlib PPC resources - - - wxlib PPC profile - - - wxshlb PPC release - - - wxshlb PPC debug - - - wxshlba PPC debug - - - wxshlba PPC release - - - - - wxlib PPC resources - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Pathmac/classic - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::lib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS Merge - PreLinker - PostLinker - Targetnamewxlib PPC resources - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathsfalse - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileName - CodeCompletionMacroFileName - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixname - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÄ@ž–@)t - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNamewx_PPC.rsrc - MWMerge_MacOS_outputCreatorRSED - MWMerge_MacOS_outputTypersrc - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatGeneric - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeExecutable - MWProject_MacOSX_outfile - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypeMEXE - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmanglefalse - PDisasmX86_verbosefalse - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeApplication - MWProject_X86_outfileNONAME.EXE - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - Name - apprsrc.r - MacOS - Text - Debug - - - Name - corersrc.r - MacOS - Text - Debug - - - - - Name - apprsrc.r - MacOS - - - Name - corersrc.r - MacOS - - - - - wxlib PPC profile - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - MacOS - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:classic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxlib PPC profile - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle1 - MWFrontEnd_C_prefixnamewx/wx_cw.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÄ@ž–@)t - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler1 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel2 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeLibrary - MWProject_MacOSX_outfilewx_PPC_prof.lib - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetype???? - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_PPC_prof.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wx_cw.pch++ - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wx_cw.pch - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :unzip.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportAppPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC.Lib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - Library - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - Text - Debug - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :metafile.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - - - PathRelative - Project - ::include: - :wx_cw.pch++ - MacOS - - - PathRelative - Project - ::include: - :wx_cw.pch - MacOS - - - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :unzip.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :colrdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - - - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportAppPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC.Lib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - wxshlb PPC debug - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:classic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxshlb PPC debug - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXPM - FileExtension.xpm - CompilerMW C/C++ PPC - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle1 - MWFrontEnd_C_prefixnamewx/wxshlb_cw_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÄ@ž–@)t - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname__initialize - MWLinker_PPC_mainname - MWLinker_PPC_termname__terminate - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeSharedLibrary - MWProject_MacOSX_outfilewx_PPC_d.shlb - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypeshlb - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeSharedLibrary - MWProject_PPC_outfilewx_PPC_d.shlb - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeshlb - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :unzip.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - Name - db.cpp - MacOS - Text - Debug - - - Name - dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - Name - colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - Library - Debug - - - PathRelative - Project - ::include: - :wxshlb_cw_d.pch++ - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlb_cw_d.pch - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - Library - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_ShLibRuntime_PPC_D.Lib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC_D.Shlb - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportExtnPPC.o - MacOS - Library - Debug - - - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MSL: - :MSL_C++:MSL_MacOS:Lib:PPC:MSL_C++_PPC_D.Lib - MacOS - Library - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - Text - Debug - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_ShLibRuntime_PPC_D.Lib - MacOS - - - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :unzip.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - Name - db.cpp - MacOS - - - Name - dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - Name - colrdlgg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - - - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC_D.Shlb - MacOS - - - PathRelative - Project - ::include: - :wxshlb_cw_d.pch++ - MacOS - - - PathRelative - Project - ::include: - :wxshlb_cw_d.pch - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportExtnPPC.o - MacOS - - - PathRelative - CodeWarrior - :MSL: - :MSL_C++:MSL_MacOS:Lib:PPC:MSL_C++_PPC_D.Lib - MacOS - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - wxshlba PPC debug - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:classic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::lib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxshlba PPC debug - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXPM - FileExtension.xpm - CompilerMW C/C++ PPC - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle1 - MWFrontEnd_C_prefixnamewx/wxshlb_cw_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÄ@ž–@)t - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym0 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeExecutable - MWProject_MacOSX_outfilewx_PPC_d.shlba - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypestub - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeStubLibrary - MWProject_PPC_outfilewx_PPC_d.shlba - MWProject_PPC_filecreator???? - MWProject_PPC_filetypestub - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - ::include: - :wxshlba_cw_d.pch++ - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlba_cw_d.pch - MacOS - Text - Debug - - - - - PathRelative - Project - ::include: - :wxshlba_cw_d.pch++ - MacOS - - - PathRelative - Project - ::include: - :wxshlba_cw_d.pch - MacOS - - - - - wxshlb PPC release - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:classic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxshlb PPC release - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXPM - FileExtension.xpm - CompilerMW C/C++ PPC - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle1 - MWFrontEnd_C_prefixnamewx/wxshlb_cw.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÄ@ž–@)t - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname__initialize - MWLinker_PPC_mainname - MWLinker_PPC_termname__terminate - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeSharedLibrary - MWProject_MacOSX_outfilewx_PPC.shlb - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypeshlb - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeSharedLibrary - MWProject_PPC_outfilewx_PPC.shlb - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeshlb - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :unzip.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - Name - db.cpp - MacOS - Text - Debug - - - Name - dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - Name - colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - Library - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportExtnPPC.o - MacOS - Library - Debug - - - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlb_cw.pch - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlb_cw.pch++ - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_ShLibRuntime_PPC.Lib - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC.Shlb - MacOS - Library - Debug - - - PathRelative - CodeWarrior - :MSL: - :MSL_C++:MSL_MacOS:Lib:PPC:MSL_C++_PPC.Lib - MacOS - Library - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - Text - Debug - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :unzip.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - Name - db.cpp - MacOS - - - Name - dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - Name - colrdlgg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - - - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - - - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportExtnPPC.o - MacOS - - - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - ::include: - :wxshlb_cw.pch - MacOS - - - PathRelative - Project - ::include: - :wxshlb_cw.pch++ - MacOS - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_ShLibRuntime_PPC.Lib - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC.Shlb - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - - - PathRelative - CodeWarrior - :MSL: - :MSL_C++:MSL_MacOS:Lib:PPC:MSL_C++_PPC.Lib - MacOS - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - PPC - LinkAgainst - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - wxshlba PPC release - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:classic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::lib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxshlba PPC release - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXPM - FileExtension.xpm - CompilerMW C/C++ PPC - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle1 - MWFrontEnd_C_prefixnamewx/wxshlb_cw_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÄ@ž–@)t - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym0 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeExecutable - MWProject_MacOSX_outfilewx_PPC_d.shlba - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypestub - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeStubLibrary - MWProject_PPC_outfilewx_PPC_d.shlba - MWProject_PPC_filecreator???? - MWProject_PPC_filetypestub - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - ::include: - :wxshlba_cw.pch - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlba_cw.pch++ - MacOS - Text - Debug - - - - - PathRelative - Project - ::include: - :wxshlba_cw.pch - MacOS - - - PathRelative - Project - ::include: - :wxshlba_cw.pch++ - MacOS - - - - - - - wxlib PPC debug - wxlib PPC release - wxlib PPC resources - wxlib PPC profile - wxshlb PPC debug - wxshlb PPC release - wxshlba PPC debug - wxshlba PPC release - all targets - - - - common - - wxlib PPC debug - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - appbase.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :config.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :containr.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - datacmn.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - wxlib PPC debug - Name - db.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - wxlib PPC debug - Name - dobjcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :docview.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :effects.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :event.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :extended.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :file.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :filename.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :hash.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :http.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :image.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - init.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - :intl.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :layout.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :list.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :log.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :memory.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :module.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :object.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :paper.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :process.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :regex.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :socket.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :stream.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :string.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :unzip.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :url.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :validate.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :variant.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - generic - - wxlib PPC debug - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - wxlib PPC debug - Name - colrdlgg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :imaglist.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - renderg.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - headers - - wxlib PPC release - Name - wx_cw.pch - MacOS - - - wxlib PPC release - Name - wx_cw.pch++ - MacOS - - - wxlib PPC debug - PathRelative - Project - ::include: - :wx_cw_d.pch - MacOS - - - wxlib PPC debug - PathRelative - Project - ::include: - :wx_cw_d.pch++ - MacOS - - - wxshlb PPC release - PathRelative - Project - ::include: - :wxshlb_cw.pch - MacOS - - - wxshlb PPC release - PathRelative - Project - ::include: - :wxshlb_cw.pch++ - MacOS - - - wxshlb PPC debug - PathRelative - Project - ::include: - :wxshlb_cw_d.pch - MacOS - - - wxshlb PPC debug - PathRelative - Project - ::include: - :wxshlb_cw_d.pch++ - MacOS - - - wxshlba PPC release - PathRelative - Project - ::include: - :wxshlba_cw.pch - MacOS - - - wxshlba PPC release - PathRelative - Project - ::include: - :wxshlba_cw.pch++ - MacOS - - - wxshlba PPC debug - PathRelative - Project - ::include: - :wxshlba_cw_d.pch++ - MacOS - - - wxshlba PPC debug - PathRelative - Project - ::include: - :wxshlba_cw_d.pch - MacOS - - - html - - wxlib PPC debug - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - modules - - wxlib PPC debug - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - - wxlib PPC debug - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - unix - - xml - - wxlib PPC debug - PathRelative - Project - xml - xml.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - wxlib PPC debug - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - wxlib PPC debug - PathRelative - Project - expat/lib - xmltok.c - Unix - - - mac - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :accel.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :app.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :bitmap.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :bmpbuttn.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :brush.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :button.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :checkbox.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :checklst.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :choice.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :clipbrd.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :colordlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :colour.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :combobox.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :control.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :cursor.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :data.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :dataobj.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :dc.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :dcclient.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :dcmemory.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :dcprint.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :dcscreen.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :dialog.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :dirdlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :dirmac.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :dnd.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :filedlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :font.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :fontdlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :fontenum.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :fontutil.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :frame.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :gauge.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :gdiobj.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :glcanvas.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :gsocket.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :icon.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :joystick.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :listbox.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :macnotfy.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :main.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :mdi.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :menu.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :menuitem.cpp - MacOS - - - wxlib PPC debug - Name - metafile.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :mimetmac.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :minifram.cpp - MacOS - - morefile - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :morefile:DirectoryCopy.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :morefile:FileCopy.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :morefile:FSpCompat.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :morefile:FullPath.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :morefile:IterateDirectory.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :morefile:MoreDesktopMgr.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :morefile:MoreFiles.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :morefile:MoreFilesExtras.c - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :morefile:Search.c - MacOS - - - morefilex - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :msgdlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :notebmac.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :palette.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :pen.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :pnghand.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :printdlg.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :printmac.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :radiobox.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :radiobut.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :region.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - renderer.cpp - Unix - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :scrolbar.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :settings.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :slider.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :spinbutt.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :spinctrl.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :statbmp.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :statbox.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :statbrma.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :statlmac.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :stattext.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :tabctrl.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :textctrl.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :thread.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :timer.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :toolbar.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :tooltip.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :toplevel.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :uma.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :utils.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :utilsexc.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :sound.cpp - MacOS - - - wxlib PPC debug - PathRelative - Project - :mac:classic: - :window.cpp - MacOS - - - mac resources - - wxlib PPC resources - Name - apprsrc.r - MacOS - - - wxlib PPC resources - Name - corersrc.r - MacOS - - - wx-addon libraries - - wxlib PPC debug - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - wxlib PPC debug - PathRelative - Project - :png: - pngM8.mcp - Unix - - - wxlib PPC debug - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - wxlib PPC debug - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - wxlib PPC debug - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - mac libraries - common - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :OpenGL:Libraries:OpenGLLibraryStub - MacOS - - - classic - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CursorDevicesGlue.o - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptATalkPPC.o - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:CarbonAccessors.o - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportAppPPC.o - MacOS - - - wxshlb PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTransportExtnPPC.o - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Sources:PLStringFuncs:Libs:PLStringFuncsPPC.lib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:PPCLibraries:OpenTptInetPPC.o - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:NavigationLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ControlsLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DialogsLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:DragLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:WindowsLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MenusLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InterfaceLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:MathLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:AppearanceLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:InternetConfigLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ThreadsLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTransportLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptInternetLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:OpenTptAppleTalkLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UTCUtils - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextCommon - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:ATSUnicodeLib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:UnicodeConverter - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:TextEncodingConverter - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Universal:Libraries:StubLibraries:Textension - MacOS - - - carbon - - - msl libraries - - wxlib PPC debug - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - - - wxshlb PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_ShLibRuntime_PPC_D.Lib - MacOS - - - wxshlb PPC release - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_ShLibRuntime_PPC.Lib - MacOS - - - wxlib PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC_D.Lib - MacOS - - - wxshlb PPC debug - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC_D.Shlb - MacOS - - - wxlib PPC release - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC.Lib - MacOS - - - wxshlb PPC release - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_All_PPC.Shlb - MacOS - - - wxshlb PPC debug - PathRelative - CodeWarrior - :MSL: - :MSL_C++:MSL_MacOS:Lib:PPC:MSL_C++_PPC_D.Lib - MacOS - - - wxshlb PPC release - PathRelative - CodeWarrior - :MSL: - :MSL_C++:MSL_MacOS:Lib:PPC:MSL_C++_PPC.Lib - MacOS - - - - wxlib PPC debug - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - wxlib PPC debug - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - wxlib PPC debug - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - wxlib PPC debug - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - wxlib PPC debug - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - diff --git a/src/wxWindowsM8.xml b/src/wxWindowsM8.xml deleted file mode 100755 index 0f4aee3699..0000000000 --- a/src/wxWindowsM8.xml +++ /dev/null @@ -1,66645 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -]> - - - - - wxshlb Mach-O debug - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathunix - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path../lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMacOS X Support/Headers/(wchar_t Support fix) - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMacOS X Support - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/include - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C++ - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/lib - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathSystem/Library/Frameworks - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathtrue - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS X PPC Linker - PreLinker - PostLinker - Targetnamewxshlb Mach-O debug - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMDYL - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMLIB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.arr - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.axp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.lcf - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.m - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.mm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchmm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.plc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ploc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.wke - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.a - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.dylib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.gif - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.icns - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.jpg - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.nib - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.pl - CompilerPerl Tool - EditLanguagePerl - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.plist - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.psh - CompilerShell Tool - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.sh - CompilerShell Tool - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.strings - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.tiff - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wxshlb_cwc_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline1 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatGeneric - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesOutOfLine - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym1 - MWLinker_MacOSX_symfullpath1 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs0 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsPragma - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainname - - - MWProject_MacOSX_typeSharedLibrary - MWProject_MacOSX_outfilewx_MACH_d.dylib - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypeMDYL - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc1 - MWProject_MacOSX_flatrsrcfilenamewx_MACH_d.rsrc - MWProject_MacOSX_flatrsrcoutputdir - Path../lib - PathFormatUnix - PathRootProject - - MWProject_MacOSX_installpath@executable_path/../Frameworks/ - MWProject_MacOSX_dont_prebind1 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_CARBON_d.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmanglefalse - PDisasmX86_verbosefalse - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - PathRelative - Project - unix - utilsunx.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - MSL/MSL_C - MSL_MacOS/Src/console_OS_X.c - Unix - Text - Debug - - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - Text - Debug - - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - unix - baseunix.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - ::include: - wxshlb_cwc_d.pch - Unix - Text - Debug - - - PathRelative - Project - ::include: - wxshlb_cwc_d.pch++ - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - drawer.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - taskbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_html.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_split.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_text.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlres.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - gsocket.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - utilsexc_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - gsockosx.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - stdpaths.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - dlunix.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - appcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - archive.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - artprov.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - artstd.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bmpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - choiccmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - clipcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - clntdata.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - cmdline.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - cmdproc.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - cmndata.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - config.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - containr.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - cshelp.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - ctrlcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - ctrlsub.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - datetime.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - datstrm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - db.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dbgrid.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dbtable.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dcbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dircmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dndcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dobjcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - docmdi.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - docview.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dseldlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dynarray.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dynlib.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dynload.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - effects.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - encconv.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - event.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - extended.c - Unix - Text - Debug - - - PathRelative - Project - :common: - fddlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - ffile.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - file.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fileconf.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - filefn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - filename.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - filesys.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fontcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fontmap.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - framecmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fs_inet.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fs_mem.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fs_zip.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - ftp.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gaugecmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gdicmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - geometry.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gifdecod.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - hash.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - hashmap.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - helpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - http.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - iconbndl.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagall.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagbmp.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - image.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagfill.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imaggif.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagiff.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagjpeg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagpcx.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagpng.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagpnm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagtiff.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagxpm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - intl.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - ipcbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - layout.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - lboxcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - list.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - log.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - longlong.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - matrix.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - memory.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - menucmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - mimecmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - module.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - msgout.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - mstream.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - nbkbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - object.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - paper.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - popupcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - prntbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - process.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - protocol.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - quantize.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - radiocmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - regex.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sckaddr.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sckfile.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sckipc.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sckstrm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - settcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sizer.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - socket.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - statbar.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stockitem.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - strconv.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stream.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - string.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sysopt.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - tbarbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - textbuf.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - textcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - textfile.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - timercmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - tokenzr.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - toplvcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - treebase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - txtstrm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - uri.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - url.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - utilscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - valgen.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - validate.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - valtext.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - variant.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - wfstream.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - wincmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - wxchar.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - xpmdecod.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - zipstrm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - zstream.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - busyinfo.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - calctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - caret.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - choicdgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - colrdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - dcpsg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - dirctrlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - dirdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - dragimgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - fdrepdlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - fontdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - grid.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - gridctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - gridsel.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - laywin.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - listctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - logg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - numdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - panelg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - printps.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - progdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - sashwin.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - scrlwing.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - selstore.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - splash.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - splitter.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - statusbr.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - tabg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - textdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - tipdlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - tipwin.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - treectlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - wizard.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Startup/dylib1.o - Unix - Library - Debug - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Runtime/Libs/MSL_Runtime_Mach-O_D.a - Unix - Library - Debug - - - - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - unix - utilsunx.cpp - Unix - - - PathRelative - CodeWarrior - MSL/MSL_C - MSL_MacOS/Src/console_OS_X.c - Unix - - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - - - PathRelative - Project - unix - baseunix.cpp - Unix - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - ::include: - wxshlb_cwc_d.pch - Unix - - - PathRelative - Project - ::include: - wxshlb_cwc_d.pch++ - Unix - - - PathRelative - Project - :mac:carbon: - drawer.cpp - Unix - - - PathRelative - Project - :mac:carbon: - taskbar.cpp - Unix - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - - - PathRelative - Project - xrc - xh_html.cpp - Unix - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - - - PathRelative - Project - xrc - xh_split.cpp - Unix - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - - - PathRelative - Project - xrc - xh_text.cpp - Unix - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - - - PathRelative - Project - xrc - xmlres.cpp - Unix - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - - - PathRelative - Project - unix - gsocket.cpp - Unix - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - - - PathRelative - Project - mac/corefoundation - utilsexc_cf.cpp - Unix - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - - - PathRelative - Project - mac/corefoundation - gsockosx.cpp - Unix - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - - - PathRelative - Project - unix - stdpaths.cpp - Unix - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - - - PathRelative - Project - unix - dlunix.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - appcmn.cpp - Unix - - - PathRelative - Project - :common: - archive.cpp - Unix - - - PathRelative - Project - :common: - artprov.cpp - Unix - - - PathRelative - Project - :common: - artstd.cpp - Unix - - - PathRelative - Project - :common: - bmpbase.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - - - PathRelative - Project - :common: - choiccmn.cpp - Unix - - - PathRelative - Project - :common: - clipcmn.cpp - Unix - - - PathRelative - Project - :common: - clntdata.cpp - Unix - - - PathRelative - Project - :common: - cmdline.cpp - Unix - - - PathRelative - Project - :common: - cmdproc.cpp - Unix - - - PathRelative - Project - :common: - cmndata.cpp - Unix - - - PathRelative - Project - :common: - config.cpp - Unix - - - PathRelative - Project - :common: - containr.cpp - Unix - - - PathRelative - Project - :common: - cshelp.cpp - Unix - - - PathRelative - Project - :common: - ctrlcmn.cpp - Unix - - - PathRelative - Project - :common: - ctrlsub.cpp - Unix - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - datetime.cpp - Unix - - - PathRelative - Project - :common: - datstrm.cpp - Unix - - - PathRelative - Project - :common: - db.cpp - Unix - - - PathRelative - Project - :common: - dbgrid.cpp - Unix - - - PathRelative - Project - :common: - dbtable.cpp - Unix - - - PathRelative - Project - :common: - dcbase.cpp - Unix - - - PathRelative - Project - :common: - dircmn.cpp - Unix - - - PathRelative - Project - :common: - dlgcmn.cpp - Unix - - - PathRelative - Project - :common: - dndcmn.cpp - Unix - - - PathRelative - Project - :common: - dobjcmn.cpp - Unix - - - PathRelative - Project - :common: - docmdi.cpp - Unix - - - PathRelative - Project - :common: - docview.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - dseldlg.cpp - Unix - - - PathRelative - Project - :common: - dynarray.cpp - Unix - - - PathRelative - Project - :common: - dynlib.cpp - Unix - - - PathRelative - Project - :common: - dynload.cpp - Unix - - - PathRelative - Project - :common: - effects.cpp - Unix - - - PathRelative - Project - :common: - encconv.cpp - Unix - - - PathRelative - Project - :common: - event.cpp - Unix - - - PathRelative - Project - :common: - extended.c - Unix - - - PathRelative - Project - :common: - fddlgcmn.cpp - Unix - - - PathRelative - Project - :common: - ffile.cpp - Unix - - - PathRelative - Project - :common: - file.cpp - Unix - - - PathRelative - Project - :common: - fileconf.cpp - Unix - - - PathRelative - Project - :common: - filefn.cpp - Unix - - - PathRelative - Project - :common: - filename.cpp - Unix - - - PathRelative - Project - :common: - filesys.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - fontcmn.cpp - Unix - - - PathRelative - Project - :common: - fontmap.cpp - Unix - - - PathRelative - Project - :common: - framecmn.cpp - Unix - - - PathRelative - Project - :common: - fs_inet.cpp - Unix - - - PathRelative - Project - :common: - fs_mem.cpp - Unix - - - PathRelative - Project - :common: - fs_zip.cpp - Unix - - - PathRelative - Project - :common: - ftp.cpp - Unix - - - PathRelative - Project - :common: - gaugecmn.cpp - Unix - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - - - PathRelative - Project - :common: - gdicmn.cpp - Unix - - - PathRelative - Project - :common: - geometry.cpp - Unix - - - PathRelative - Project - :common: - gifdecod.cpp - Unix - - - PathRelative - Project - :common: - hash.cpp - Unix - - - PathRelative - Project - :common: - hashmap.cpp - Unix - - - PathRelative - Project - :common: - helpbase.cpp - Unix - - - PathRelative - Project - :common: - http.cpp - Unix - - - PathRelative - Project - :common: - iconbndl.cpp - Unix - - - PathRelative - Project - :common: - imagall.cpp - Unix - - - PathRelative - Project - :common: - imagbmp.cpp - Unix - - - PathRelative - Project - :common: - image.cpp - Unix - - - PathRelative - Project - :common: - imagfill.cpp - Unix - - - PathRelative - Project - :common: - imaggif.cpp - Unix - - - PathRelative - Project - :common: - imagiff.cpp - Unix - - - PathRelative - Project - :common: - imagjpeg.cpp - Unix - - - PathRelative - Project - :common: - imagpcx.cpp - Unix - - - PathRelative - Project - :common: - imagpng.cpp - Unix - - - PathRelative - Project - :common: - imagpnm.cpp - Unix - - - PathRelative - Project - :common: - imagtiff.cpp - Unix - - - PathRelative - Project - :common: - imagxpm.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - Project - :common: - intl.cpp - Unix - - - PathRelative - Project - :common: - ipcbase.cpp - Unix - - - PathRelative - Project - :common: - layout.cpp - Unix - - - PathRelative - Project - :common: - lboxcmn.cpp - Unix - - - PathRelative - Project - :common: - list.cpp - Unix - - - PathRelative - Project - :common: - log.cpp - Unix - - - PathRelative - Project - :common: - longlong.cpp - Unix - - - PathRelative - Project - :common: - matrix.cpp - Unix - - - PathRelative - Project - :common: - memory.cpp - Unix - - - PathRelative - Project - :common: - menucmn.cpp - Unix - - - PathRelative - Project - :common: - mimecmn.cpp - Unix - - - PathRelative - Project - :common: - module.cpp - Unix - - - PathRelative - Project - :common: - msgout.cpp - Unix - - - PathRelative - Project - :common: - mstream.cpp - Unix - - - PathRelative - Project - :common: - nbkbase.cpp - Unix - - - PathRelative - Project - :common: - object.cpp - Unix - - - PathRelative - Project - :common: - paper.cpp - Unix - - - PathRelative - Project - :common: - popupcmn.cpp - Unix - - - PathRelative - Project - :common: - prntbase.cpp - Unix - - - PathRelative - Project - :common: - process.cpp - Unix - - - PathRelative - Project - :common: - protocol.cpp - Unix - - - PathRelative - Project - :common: - quantize.cpp - Unix - - - PathRelative - Project - :common: - radiocmn.cpp - Unix - - - PathRelative - Project - :common: - regex.cpp - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - sckaddr.cpp - Unix - - - PathRelative - Project - :common: - sckfile.cpp - Unix - - - PathRelative - Project - :common: - sckipc.cpp - Unix - - - PathRelative - Project - :common: - sckstrm.cpp - Unix - - - PathRelative - Project - :common: - settcmn.cpp - Unix - - - PathRelative - Project - :common: - sizer.cpp - Unix - - - PathRelative - Project - :common: - socket.cpp - Unix - - - PathRelative - Project - :common: - statbar.cpp - Unix - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - - - PathRelative - Project - :common: - stockitem.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - strconv.cpp - Unix - - - PathRelative - Project - :common: - stream.cpp - Unix - - - PathRelative - Project - :common: - string.cpp - Unix - - - PathRelative - Project - :common: - sysopt.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - tbarbase.cpp - Unix - - - PathRelative - Project - :common: - textbuf.cpp - Unix - - - PathRelative - Project - :common: - textcmn.cpp - Unix - - - PathRelative - Project - :common: - textfile.cpp - Unix - - - PathRelative - Project - :common: - timercmn.cpp - Unix - - - PathRelative - Project - :common: - tokenzr.cpp - Unix - - - PathRelative - Project - :common: - toplvcmn.cpp - Unix - - - PathRelative - Project - :common: - treebase.cpp - Unix - - - PathRelative - Project - :common: - txtstrm.cpp - Unix - - - PathRelative - Project - :common: - uri.cpp - Unix - - - PathRelative - Project - :common: - url.cpp - Unix - - - PathRelative - Project - :common: - utilscmn.cpp - Unix - - - PathRelative - Project - :common: - valgen.cpp - Unix - - - PathRelative - Project - :common: - validate.cpp - Unix - - - PathRelative - Project - :common: - valtext.cpp - Unix - - - PathRelative - Project - :common: - variant.cpp - Unix - - - PathRelative - Project - :common: - wfstream.cpp - Unix - - - PathRelative - Project - :common: - wincmn.cpp - Unix - - - PathRelative - Project - :common: - wxchar.cpp - Unix - - - PathRelative - Project - :common: - xpmdecod.cpp - Unix - - - PathRelative - Project - :common: - zipstrm.cpp - Unix - - - PathRelative - Project - :common: - zstream.cpp - Unix - - - PathRelative - Project - :generic: - busyinfo.cpp - Unix - - - PathRelative - Project - :generic: - calctrl.cpp - Unix - - - PathRelative - Project - :generic: - caret.cpp - Unix - - - PathRelative - Project - :generic: - choicdgg.cpp - Unix - - - PathRelative - Project - :generic: - colrdlgg.cpp - Unix - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - - - PathRelative - Project - :generic: - dcpsg.cpp - Unix - - - PathRelative - Project - :generic: - dirctrlg.cpp - Unix - - - PathRelative - Project - :generic: - dirdlgg.cpp - Unix - - - PathRelative - Project - :generic: - dragimgg.cpp - Unix - - - PathRelative - Project - :generic: - fdrepdlg.cpp - Unix - - - PathRelative - Project - :generic: - fontdlgg.cpp - Unix - - - PathRelative - Project - :generic: - grid.cpp - Unix - - - PathRelative - Project - :generic: - gridctrl.cpp - Unix - - - PathRelative - Project - :generic: - gridsel.cpp - Unix - - - PathRelative - Project - :generic: - laywin.cpp - Unix - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - - - PathRelative - Project - :generic: - listctrl.cpp - Unix - - - PathRelative - Project - :generic: - logg.cpp - Unix - - - PathRelative - Project - :generic: - numdlgg.cpp - Unix - - - PathRelative - Project - :generic: - panelg.cpp - Unix - - - PathRelative - Project - :generic: - printps.cpp - Unix - - - PathRelative - Project - :generic: - progdlgg.cpp - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :generic: - sashwin.cpp - Unix - - - PathRelative - Project - :generic: - scrlwing.cpp - Unix - - - PathRelative - Project - :generic: - selstore.cpp - Unix - - - PathRelative - Project - :generic: - splash.cpp - Unix - - - PathRelative - Project - :generic: - splitter.cpp - Unix - - - PathRelative - Project - :generic: - statusbr.cpp - Unix - - - PathRelative - Project - :generic: - tabg.cpp - Unix - - - PathRelative - Project - :generic: - textdlgg.cpp - Unix - - - PathRelative - Project - :generic: - tipdlg.cpp - Unix - - - PathRelative - Project - :generic: - tipwin.cpp - Unix - - - PathRelative - Project - :generic: - treectlg.cpp - Unix - - - PathRelative - Project - :generic: - wizard.cpp - Unix - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Startup/dylib1.o - Unix - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Runtime/Libs/MSL_Runtime_Mach-O_D.a - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - - PathRelative - OS X Volume - System/Library/Frameworks - Carbon.framework - Unix - - Carbon - - - - PathRelative - OS X Volume - System/Library/Frameworks - System.framework - Unix - - System - - - - PathRelative - OS X Volume - System/Library/Frameworks - QuickTime.framework - Unix - - QuickTime - - - - PathRelative - OS X Volume - System/Library/Frameworks - IOKit.framework - Unix - - IOKit - - - - - wxshlb Mach-O release - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathunix - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path../lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMacOS X Support/Headers/(wchar_t Support fix) - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMacOS X Support - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/include - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C++ - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/lib - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathSystem/Library/Frameworks - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathtrue - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS X PPC Linker - PreLinker - PostLinker - Targetnamewxshlb Mach-O release - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMDYL - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMLIB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.arr - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.axp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.lcf - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.m - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.mm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchmm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.plc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ploc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.wke - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.a - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.dylib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.gif - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.icns - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.jpg - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.nib - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.pl - CompilerPerl Tool - EditLanguagePerl - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.plist - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.psh - CompilerShell Tool - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.sh - CompilerShell Tool - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.strings - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.tiff - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator0 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wxshlb_cwc.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline1 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatGeneric - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesOutOfLine - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorP750 - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings1 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel4 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath1 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs0 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsPragma - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainname - - - MWProject_MacOSX_typeSharedLibrary - MWProject_MacOSX_outfilewx_MACH.dylib - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypeMDYL - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc1 - MWProject_MacOSX_flatrsrcfilenamewx_MACH.rsrc - MWProject_MacOSX_flatrsrcoutputdir - Path../lib - PathFormatUnix - PathRootProject - - MWProject_MacOSX_installpath@executable_path/../Frameworks/ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_CARBON_d.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmanglefalse - PDisasmX86_verbosefalse - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - Name - db.cpp - MacOS - Text - Debug - - - Name - dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - Name - colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - PathRelative - Project - unix - utilsunx.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - MSL/MSL_C - MSL_MacOS/Src/console_OS_X.c - Unix - Text - Debug - - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - Text - Debug - - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - baseunix.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - ::include: - wxshlb_cwc.pch - Unix - Text - Debug - - - PathRelative - Project - ::include: - wxshlb_cwc.pch++ - Unix - Text - Debug - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Runtime/Libs/MSL_Runtime_Mach-O.a - Unix - Library - Debug - - - PathRelative - Project - :mac:carbon: - drawer.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stockitem.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - taskbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_html.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_split.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_text.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlres.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - gsocket.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - uri.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - utilsexc_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - gsockosx.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - archive.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - stdpaths.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - dlunix.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Startup/dylib1.o - Unix - Library - Debug - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - Text - Debug - - - - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - Name - db.cpp - MacOS - - - Name - dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - Name - colrdlgg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - unix - utilsunx.cpp - Unix - - - PathRelative - CodeWarrior - MSL/MSL_C - MSL_MacOS/Src/console_OS_X.c - Unix - - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - Project - unix - baseunix.cpp - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - PathRelative - Project - ::include: - wxshlb_cwc.pch - Unix - - - PathRelative - Project - ::include: - wxshlb_cwc.pch++ - Unix - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Runtime/Libs/MSL_Runtime_Mach-O.a - Unix - - - PathRelative - Project - :mac:carbon: - drawer.cpp - Unix - - - PathRelative - Project - :common: - stockitem.cpp - Unix - - - PathRelative - Project - :mac:carbon: - taskbar.cpp - Unix - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - - - PathRelative - Project - xrc - xh_html.cpp - Unix - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - - - PathRelative - Project - xrc - xh_split.cpp - Unix - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - - - PathRelative - Project - xrc - xh_text.cpp - Unix - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - - - PathRelative - Project - xrc - xmlres.cpp - Unix - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - - - PathRelative - Project - unix - gsocket.cpp - Unix - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - - - PathRelative - Project - :common: - uri.cpp - Unix - - - PathRelative - Project - mac/corefoundation - utilsexc_cf.cpp - Unix - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - - - PathRelative - Project - mac/corefoundation - gsockosx.cpp - Unix - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - - - PathRelative - Project - :common: - archive.cpp - Unix - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - - - PathRelative - Project - unix - stdpaths.cpp - Unix - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - - - PathRelative - Project - unix - dlunix.cpp - Unix - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Startup/dylib1.o - Unix - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - - PathRelative - OS X Volume - System/Library/Frameworks - Carbon.framework - Unix - - Carbon - - - - PathRelative - OS X Volume - System/Library/Frameworks - System.framework - Unix - - System - - - - PathRelative - OS X Volume - System/Library/Frameworks - QuickTime.framework - Unix - - QuickTime - - - - PathRelative - OS X Volume - System/Library/Frameworks - IOKit.framework - Unix - - IOKit - - - - - all targets - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerNone - PreLinker - PostLinker - Targetnameall targets - OutputDirectory - Path: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathsfalse - - - FileMappings - - FileTypeMMPr - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileName - CodeCompletionMacroFileName - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixname - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatGeneric - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeExecutable - MWProject_MacOSX_outfile - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypeMEXE - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeApplication - MWProject_X86_outfileNONAME.EXE - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - - - - - wxlib Carbon debug - - - wxlib Carbon release - - - wxlib Carbon resources - - - wxshlb Carbon debug - - - wxshlb Carbon release - - - wxshlba Carbon debug - - - wxshlba Carbon release - - - wxlib Mach-O debug - - - wxlib Mach-O release - - - wxshlb Mach-O debug - - - wxshlb Mach-O release - - - wxshlba Mach-O debug - - - wxshlba Mach-O release - - - - - wxshlba Mach-O debug - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathunix - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path../lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMacOS X Support/Headers/(wchar_t Support fix) - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/include - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C++ - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMacOS X Support - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/lib - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathSystem/Library/Frameworks - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathtrue - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS X PPC Linker - PreLinker - PostLinker - Targetnamewxshlba Mach-O debug - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMDYL - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMLIB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.arr - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.axp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.lcf - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.m - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.mm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchmm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.plc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ploc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.wke - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.a - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.dylib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.gif - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.icns - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.jpg - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.nib - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.pl - CompilerPerl Tool - EditLanguagePerl - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.plist - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.psh - CompilerShell Tool - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.sh - CompilerShell Tool - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.strings - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.tiff - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wxshlba_cwc_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline1 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatGeneric - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesOutOfLine - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym1 - MWLinker_MacOSX_symfullpath1 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsPragma - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainname - - - MWProject_MacOSX_typeLibrary - MWProject_MacOSX_outfilewxshlba_Mach_d.lib - MWProject_MacOSX_filecreatorCWIE - MWProject_MacOSX_filetypeMLIB - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_CARBON_d.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmanglefalse - PDisasmX86_verbosefalse - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - ::include: - wxshlba_cwc_d.pch - Unix - Text - Debug - - - PathRelative - Project - ::include: - wxshlba_cwc_d.pch++ - Unix - Text - Debug - - - - - PathRelative - Project - ::include: - wxshlba_cwc_d.pch - Unix - - - PathRelative - Project - ::include: - wxshlba_cwc_d.pch++ - Unix - - - - - - PathRelative - OS X Volume - System/Library/Frameworks - Carbon.framework - Unix - - Carbon - - - - PathRelative - OS X Volume - System/Library/Frameworks - System.framework - Unix - - System - - - - - wxlib Carbon debug - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxlib Carbon debug - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wx_cwc_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatGeneric - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesOutOfLine - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeLibrary - MWProject_MacOSX_outfilewx_CARBON_d.lib - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetype???? - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_CARBON_d.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmanglefalse - PDisasmX86_verbosefalse - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utilsexc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wx_cwc_d.pch - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonFrameworkLib - Unix - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonLib - Unix - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - MetroNub Utilities/MNU Carbon.Lib - Unix - Library - Debug - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - ::include: - wx_cwc_d.pch++ - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - appcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - artprov.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - artstd.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bmpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - choiccmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - clipcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - clntdata.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - cmdline.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - cmdproc.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - cmndata.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - config.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - containr.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - cshelp.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - ctrlcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - ctrlsub.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - datetime.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - datstrm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - db.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dbgrid.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dbtable.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dcbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dircmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dndcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dobjcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - docmdi.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - docview.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dseldlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dynarray.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dynlib.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dynload.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - effects.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - encconv.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - event.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - extended.c - Unix - Text - Debug - - - PathRelative - Project - :common: - fddlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - ffile.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - file.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fileconf.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - filefn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - filename.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - filesys.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fontcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fontmap.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - framecmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fs_inet.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fs_mem.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fs_zip.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - ftp.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gaugecmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gdicmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - geometry.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gifdecod.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - hash.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - hashmap.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - helpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - http.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - iconbndl.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagall.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagbmp.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - image.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagfill.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imaggif.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagiff.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagjpeg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagpcx.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagpng.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagpnm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagtiff.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - imagxpm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - intl.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - ipcbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - layout.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - lboxcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - list.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - log.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - longlong.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - matrix.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - memory.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - menucmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - mimecmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - module.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - msgout.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - mstream.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - nbkbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - object.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - paper.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - popupcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - prntbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - process.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - protocol.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - quantize.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - radiocmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - regex.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sckaddr.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sckfile.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sckipc.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sckstrm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - settcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sizer.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - socket.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - statbar.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - strconv.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stream.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - string.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - sysopt.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - tbarbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - textbuf.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - textcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - textfile.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - timercmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - tokenzr.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - toplvcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - treebase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - txtstrm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - url.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - utilscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - valgen.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - validate.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - valtext.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - variant.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - wfstream.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - wincmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - wxchar.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - xpmdecod.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - zipstrm.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - zstream.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - busyinfo.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - calctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - caret.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - choicdgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - colrdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - dcpsg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - dirctrlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - dirdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - dragimgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - fdrepdlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - fontdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - grid.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - gridctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - gridsel.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - laywin.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - listctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - logg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - numdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - panelg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - printps.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - progdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - sashwin.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - scrlwing.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - selstore.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - splash.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - splitter.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - statusbr.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - tabg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - textdlgg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - tipdlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - tipwin.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - treectlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - wizard.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - gsocket.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stockitem.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_html.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_split.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_text.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlres.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - uri.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - archive.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - Text - Debug - - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utilsexc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - - - PathRelative - Project - ::include: - :wx_cwc_d.pch - MacOS - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonFrameworkLib - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonLib - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - MetroNub Utilities/MNU Carbon.Lib - Unix - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - ::include: - wx_cwc_d.pch++ - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - appcmn.cpp - Unix - - - PathRelative - Project - :common: - artprov.cpp - Unix - - - PathRelative - Project - :common: - artstd.cpp - Unix - - - PathRelative - Project - :common: - bmpbase.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - PathRelative - Project - :common: - choiccmn.cpp - Unix - - - PathRelative - Project - :common: - clipcmn.cpp - Unix - - - PathRelative - Project - :common: - clntdata.cpp - Unix - - - PathRelative - Project - :common: - cmdline.cpp - Unix - - - PathRelative - Project - :common: - cmdproc.cpp - Unix - - - PathRelative - Project - :common: - cmndata.cpp - Unix - - - PathRelative - Project - :common: - config.cpp - Unix - - - PathRelative - Project - :common: - containr.cpp - Unix - - - PathRelative - Project - :common: - cshelp.cpp - Unix - - - PathRelative - Project - :common: - ctrlcmn.cpp - Unix - - - PathRelative - Project - :common: - ctrlsub.cpp - Unix - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - datetime.cpp - Unix - - - PathRelative - Project - :common: - datstrm.cpp - Unix - - - PathRelative - Project - :common: - db.cpp - Unix - - - PathRelative - Project - :common: - dbgrid.cpp - Unix - - - PathRelative - Project - :common: - dbtable.cpp - Unix - - - PathRelative - Project - :common: - dcbase.cpp - Unix - - - PathRelative - Project - :common: - dircmn.cpp - Unix - - - PathRelative - Project - :common: - dlgcmn.cpp - Unix - - - PathRelative - Project - :common: - dndcmn.cpp - Unix - - - PathRelative - Project - :common: - dobjcmn.cpp - Unix - - - PathRelative - Project - :common: - docmdi.cpp - Unix - - - PathRelative - Project - :common: - docview.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - dseldlg.cpp - Unix - - - PathRelative - Project - :common: - dynarray.cpp - Unix - - - PathRelative - Project - :common: - dynlib.cpp - Unix - - - PathRelative - Project - :common: - dynload.cpp - Unix - - - PathRelative - Project - :common: - effects.cpp - Unix - - - PathRelative - Project - :common: - encconv.cpp - Unix - - - PathRelative - Project - :common: - event.cpp - Unix - - - PathRelative - Project - :common: - extended.c - Unix - - - PathRelative - Project - :common: - fddlgcmn.cpp - Unix - - - PathRelative - Project - :common: - ffile.cpp - Unix - - - PathRelative - Project - :common: - file.cpp - Unix - - - PathRelative - Project - :common: - fileconf.cpp - Unix - - - PathRelative - Project - :common: - filefn.cpp - Unix - - - PathRelative - Project - :common: - filename.cpp - Unix - - - PathRelative - Project - :common: - filesys.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - fontcmn.cpp - Unix - - - PathRelative - Project - :common: - fontmap.cpp - Unix - - - PathRelative - Project - :common: - framecmn.cpp - Unix - - - PathRelative - Project - :common: - fs_inet.cpp - Unix - - - PathRelative - Project - :common: - fs_mem.cpp - Unix - - - PathRelative - Project - :common: - fs_zip.cpp - Unix - - - PathRelative - Project - :common: - ftp.cpp - Unix - - - PathRelative - Project - :common: - gaugecmn.cpp - Unix - - - PathRelative - Project - :common: - gdicmn.cpp - Unix - - - PathRelative - Project - :common: - geometry.cpp - Unix - - - PathRelative - Project - :common: - gifdecod.cpp - Unix - - - PathRelative - Project - :common: - hash.cpp - Unix - - - PathRelative - Project - :common: - hashmap.cpp - Unix - - - PathRelative - Project - :common: - helpbase.cpp - Unix - - - PathRelative - Project - :common: - http.cpp - Unix - - - PathRelative - Project - :common: - iconbndl.cpp - Unix - - - PathRelative - Project - :common: - imagall.cpp - Unix - - - PathRelative - Project - :common: - imagbmp.cpp - Unix - - - PathRelative - Project - :common: - image.cpp - Unix - - - PathRelative - Project - :common: - imagfill.cpp - Unix - - - PathRelative - Project - :common: - imaggif.cpp - Unix - - - PathRelative - Project - :common: - imagiff.cpp - Unix - - - PathRelative - Project - :common: - imagjpeg.cpp - Unix - - - PathRelative - Project - :common: - imagpcx.cpp - Unix - - - PathRelative - Project - :common: - imagpng.cpp - Unix - - - PathRelative - Project - :common: - imagpnm.cpp - Unix - - - PathRelative - Project - :common: - imagtiff.cpp - Unix - - - PathRelative - Project - :common: - imagxpm.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - Project - :common: - intl.cpp - Unix - - - PathRelative - Project - :common: - ipcbase.cpp - Unix - - - PathRelative - Project - :common: - layout.cpp - Unix - - - PathRelative - Project - :common: - lboxcmn.cpp - Unix - - - PathRelative - Project - :common: - list.cpp - Unix - - - PathRelative - Project - :common: - log.cpp - Unix - - - PathRelative - Project - :common: - longlong.cpp - Unix - - - PathRelative - Project - :common: - matrix.cpp - Unix - - - PathRelative - Project - :common: - memory.cpp - Unix - - - PathRelative - Project - :common: - menucmn.cpp - Unix - - - PathRelative - Project - :common: - mimecmn.cpp - Unix - - - PathRelative - Project - :common: - module.cpp - Unix - - - PathRelative - Project - :common: - msgout.cpp - Unix - - - PathRelative - Project - :common: - mstream.cpp - Unix - - - PathRelative - Project - :common: - nbkbase.cpp - Unix - - - PathRelative - Project - :common: - object.cpp - Unix - - - PathRelative - Project - :common: - paper.cpp - Unix - - - PathRelative - Project - :common: - popupcmn.cpp - Unix - - - PathRelative - Project - :common: - prntbase.cpp - Unix - - - PathRelative - Project - :common: - process.cpp - Unix - - - PathRelative - Project - :common: - protocol.cpp - Unix - - - PathRelative - Project - :common: - quantize.cpp - Unix - - - PathRelative - Project - :common: - radiocmn.cpp - Unix - - - PathRelative - Project - :common: - regex.cpp - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - sckaddr.cpp - Unix - - - PathRelative - Project - :common: - sckfile.cpp - Unix - - - PathRelative - Project - :common: - sckipc.cpp - Unix - - - PathRelative - Project - :common: - sckstrm.cpp - Unix - - - PathRelative - Project - :common: - settcmn.cpp - Unix - - - PathRelative - Project - :common: - sizer.cpp - Unix - - - PathRelative - Project - :common: - socket.cpp - Unix - - - PathRelative - Project - :common: - statbar.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - strconv.cpp - Unix - - - PathRelative - Project - :common: - stream.cpp - Unix - - - PathRelative - Project - :common: - string.cpp - Unix - - - PathRelative - Project - :common: - sysopt.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - tbarbase.cpp - Unix - - - PathRelative - Project - :common: - textbuf.cpp - Unix - - - PathRelative - Project - :common: - textcmn.cpp - Unix - - - PathRelative - Project - :common: - textfile.cpp - Unix - - - PathRelative - Project - :common: - timercmn.cpp - Unix - - - PathRelative - Project - :common: - tokenzr.cpp - Unix - - - PathRelative - Project - :common: - toplvcmn.cpp - Unix - - - PathRelative - Project - :common: - treebase.cpp - Unix - - - PathRelative - Project - :common: - txtstrm.cpp - Unix - - - PathRelative - Project - :common: - url.cpp - Unix - - - PathRelative - Project - :common: - utilscmn.cpp - Unix - - - PathRelative - Project - :common: - valgen.cpp - Unix - - - PathRelative - Project - :common: - validate.cpp - Unix - - - PathRelative - Project - :common: - valtext.cpp - Unix - - - PathRelative - Project - :common: - variant.cpp - Unix - - - PathRelative - Project - :common: - wfstream.cpp - Unix - - - PathRelative - Project - :common: - wincmn.cpp - Unix - - - PathRelative - Project - :common: - wxchar.cpp - Unix - - - PathRelative - Project - :common: - xpmdecod.cpp - Unix - - - PathRelative - Project - :common: - zipstrm.cpp - Unix - - - PathRelative - Project - :common: - zstream.cpp - Unix - - - PathRelative - Project - :generic: - busyinfo.cpp - Unix - - - PathRelative - Project - :generic: - calctrl.cpp - Unix - - - PathRelative - Project - :generic: - caret.cpp - Unix - - - PathRelative - Project - :generic: - choicdgg.cpp - Unix - - - PathRelative - Project - :generic: - colrdlgg.cpp - Unix - - - PathRelative - Project - :generic: - dcpsg.cpp - Unix - - - PathRelative - Project - :generic: - dirctrlg.cpp - Unix - - - PathRelative - Project - :generic: - dirdlgg.cpp - Unix - - - PathRelative - Project - :generic: - dragimgg.cpp - Unix - - - PathRelative - Project - :generic: - fdrepdlg.cpp - Unix - - - PathRelative - Project - :generic: - fontdlgg.cpp - Unix - - - PathRelative - Project - :generic: - grid.cpp - Unix - - - PathRelative - Project - :generic: - gridctrl.cpp - Unix - - - PathRelative - Project - :generic: - gridsel.cpp - Unix - - - PathRelative - Project - :generic: - laywin.cpp - Unix - - - PathRelative - Project - :generic: - listctrl.cpp - Unix - - - PathRelative - Project - :generic: - logg.cpp - Unix - - - PathRelative - Project - :generic: - numdlgg.cpp - Unix - - - PathRelative - Project - :generic: - panelg.cpp - Unix - - - PathRelative - Project - :generic: - printps.cpp - Unix - - - PathRelative - Project - :generic: - progdlgg.cpp - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :generic: - sashwin.cpp - Unix - - - PathRelative - Project - :generic: - scrlwing.cpp - Unix - - - PathRelative - Project - :generic: - selstore.cpp - Unix - - - PathRelative - Project - :generic: - splash.cpp - Unix - - - PathRelative - Project - :generic: - splitter.cpp - Unix - - - PathRelative - Project - :generic: - statusbr.cpp - Unix - - - PathRelative - Project - :generic: - tabg.cpp - Unix - - - PathRelative - Project - :generic: - textdlgg.cpp - Unix - - - PathRelative - Project - :generic: - tipdlg.cpp - Unix - - - PathRelative - Project - :generic: - tipwin.cpp - Unix - - - PathRelative - Project - :generic: - treectlg.cpp - Unix - - - PathRelative - Project - :generic: - wizard.cpp - Unix - - - PathRelative - Project - :mac:carbon: - gsocket.cpp - Unix - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - - - PathRelative - Project - :common: - stockitem.cpp - Unix - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - - - PathRelative - Project - xrc - xh_html.cpp - Unix - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - - - PathRelative - Project - xrc - xh_split.cpp - Unix - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - - - PathRelative - Project - xrc - xh_text.cpp - Unix - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - - - PathRelative - Project - xrc - xmlres.cpp - Unix - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - - - PathRelative - Project - :common: - uri.cpp - Unix - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - - - PathRelative - Project - :common: - archive.cpp - Unix - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - wxlib Carbon release - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathunix - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxlib Carbon release - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator0 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wx_cwc.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline1 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel4 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym0 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeLibrary - MWProject_MacOSX_outfilewx_CARBON.lib - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetype???? - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_CARBON.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmanglefalse - PDisasmX86_verbosefalse - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utilsexc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - Text - - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :db.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - Name - tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - Text - Debug - - - Name - colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wx_cwc.pch++ - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wx_cwc.pch - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonFrameworkLib - Unix - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonLib - Unix - Library - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - gsocket.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stockitem.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_html.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_split.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_text.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlres.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - uri.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - archive.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - Text - Debug - - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utilsexc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :db.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - Name - tipdlg.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - - - Name - colrdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - - - PathRelative - Project - ::include: - :wx_cwc.pch++ - MacOS - - - PathRelative - Project - ::include: - :wx_cwc.pch - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonFrameworkLib - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonLib - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - PathRelative - Project - :mac:carbon: - gsocket.cpp - Unix - - - PathRelative - Project - :common: - stockitem.cpp - Unix - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - - - PathRelative - Project - xrc - xh_html.cpp - Unix - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - - - PathRelative - Project - xrc - xh_split.cpp - Unix - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - - - PathRelative - Project - xrc - xh_text.cpp - Unix - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - - - PathRelative - Project - xrc - xmlres.cpp - Unix - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - - - PathRelative - Project - :common: - uri.cpp - Unix - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - - - PathRelative - Project - :common: - archive.cpp - Unix - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - wxlib Carbon resources - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Pathmac/carbon - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::lib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS Merge - PreLinker - PostLinker - Targetnamewxlib Carbon resources - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathsfalse - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator0 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileName - CodeCompletionMacroFileName - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatUnix - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixname - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNamewx_CARBON.rsrc - MWMerge_MacOS_outputCreatorRSED - MWMerge_MacOS_outputTypersrc - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeExecutable - MWProject_MacOSX_outfile - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypeMEXE - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeApplication - MWProject_X86_outfileNONAME.EXE - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - Name - apprsrc.r - MacOS - Text - Debug - - - Name - corersrc.r - MacOS - Text - Debug - - - Name - carbrsrc.r - MacOS - Text - - - - - - Name - apprsrc.r - MacOS - - - Name - corersrc.r - MacOS - - - Name - carbrsrc.r - MacOS - - - - - wxshlb Carbon debug - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxshlb Carbon debug - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXPM - FileExtension.xpm - CompilerMW C/C++ PPC - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wxshlb_cwc_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname__initialize - MWLinker_PPC_mainname - MWLinker_PPC_termname__terminate - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeSharedLibrary - MWProject_MacOSX_outfilewx_Carbon_d.shlb - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypeshlb - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeSharedLibrary - MWProject_PPC_outfilewx_Carbon_d.shlb - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeshlb - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utilsexc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - Name - db.cpp - MacOS - Text - Debug - - - Name - dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - Name - colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlb_cwc_d.pch - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlb_cwc_d.pch++ - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonFrameworkLib - Unix - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonLib - Unix - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - MetroNub Utilities/MNU Carbon.Lib - Unix - Library - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - gsocket.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stockitem.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_html.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_split.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_text.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlres.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - uri.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - archive.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_All_Carbon_D.Shlb - Unix - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_ShLibRuntime_PPC_D.Lib - Unix - Library - Debug - - - - - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_All_Carbon_D.Shlb - Unix - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utilsexc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - Name - db.cpp - MacOS - - - Name - dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - Name - colrdlgg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - ::include: - :wxshlb_cwc_d.pch - MacOS - - - PathRelative - Project - ::include: - :wxshlb_cwc_d.pch++ - MacOS - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonFrameworkLib - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonLib - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - MetroNub Utilities/MNU Carbon.Lib - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - PathRelative - Project - :mac:carbon: - gsocket.cpp - Unix - - - PathRelative - Project - :common: - stockitem.cpp - Unix - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - - - PathRelative - Project - xrc - xh_html.cpp - Unix - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - - - PathRelative - Project - xrc - xh_split.cpp - Unix - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - - - PathRelative - Project - xrc - xh_text.cpp - Unix - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - - - PathRelative - Project - xrc - xmlres.cpp - Unix - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - - - PathRelative - Project - :common: - uri.cpp - Unix - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - - - PathRelative - Project - :common: - archive.cpp - Unix - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_ShLibRuntime_PPC_D.Lib - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - wxshlb Carbon release - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxshlb Carbon release - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXPM - FileExtension.xpm - CompilerMW C/C++ PPC - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator0 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wxshlb_cwc.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline1 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel4 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym0 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname__wxinitialize - MWLinker_PPC_mainname - MWLinker_PPC_termname__wxterminate - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeSharedLibrary - MWProject_MacOSX_outfilewx_Carbon.shlb - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypeshlb - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeSharedLibrary - MWProject_PPC_outfilewx_Carbon.shlb - MWProject_PPC_filecreatorcfmg - MWProject_PPC_filetypeshlb - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utilsexc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - Name - db.cpp - MacOS - Text - Debug - - - Name - dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - Name - colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlb_cwc.pch - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlb_cwc.pch++ - MacOS - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_ShLibRuntime_PPC.Lib - MacOS - Library - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - Text - Debug - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonFrameworkLib - Unix - Library - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonLib - Unix - Library - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - MetroNub Utilities/MNU Carbon.Lib - Unix - Library - Debug - - - PathRelative - Project - :mac:carbon: - gsocket.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stockitem.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_html.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_split.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_text.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlres.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - uri.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - archive.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_All_Carbon.Shlb - Unix - Library - Debug - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_ShLibRuntime_PPC_D.Lib - Unix - Library - Debug - - - - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utilsexc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - Name - db.cpp - MacOS - - - Name - dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - Name - colrdlgg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - ::include: - :wxshlb_cwc.pch - MacOS - - - PathRelative - Project - ::include: - :wxshlb_cwc.pch++ - MacOS - - - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_ShLibRuntime_PPC.Lib - MacOS - - - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonFrameworkLib - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonLib - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - MetroNub Utilities/MNU Carbon.Lib - Unix - - - PathRelative - Project - :mac:carbon: - gsocket.cpp - Unix - - - PathRelative - Project - :common: - stockitem.cpp - Unix - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - - - PathRelative - Project - xrc - xh_html.cpp - Unix - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - - - PathRelative - Project - xrc - xh_split.cpp - Unix - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - - - PathRelative - Project - xrc - xh_text.cpp - Unix - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - - - PathRelative - Project - xrc - xmlres.cpp - Unix - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - - - PathRelative - Project - :common: - uri.cpp - Unix - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - - - PathRelative - Project - :common: - archive.cpp - Unix - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_All_Carbon.Shlb - Unix - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - - - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_ShLibRuntime_PPC_D.Lib - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - PPC - Build, LinkAgainst - - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - wxshlba Carbon release - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::lib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxshlba Carbon release - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXPM - FileExtension.xpm - CompilerMW C/C++ PPC - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wxshlba_cwc.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline1 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel4 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym0 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeExecutable - MWProject_MacOSX_outfilewx_PPC_d.shlba - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypestub - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeStubLibrary - MWProject_PPC_outfilewx_PPC_d.shlba - MWProject_PPC_filecreator???? - MWProject_PPC_filetypestub - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - ::include: - :wxshlba_cwc.pch - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlba_cwc.pch++ - MacOS - Text - Debug - - - - - PathRelative - Project - ::include: - :wxshlba_cwc.pch - MacOS - - - PathRelative - Project - ::include: - :wxshlba_cwc.pch++ - MacOS - - - - - wxshlba Carbon debug - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::lib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path:MSL: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:MacOS Support: - PathFormatMacOS - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS PPC Linker - PreLinker - PostLinker - Targetnamewxshlba Carbon debug - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerLib Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.bh - CompilerBalloon Help - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.p - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pas - CompilerMW Pascal PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ppu - CompilerMW Pascal PPC - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.s - CompilerPPCAsm - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXCOF - FileExtension - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeXPM - FileExtension.xpm - CompilerMW C/C++ PPC - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeshlb - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypestub - FileExtension - CompilerPEF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.o - CompilerXCOFF Import PPC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator0 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wxshlba_cwc_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesInline - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym0 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeExecutable - MWProject_MacOSX_outfilewx_PPC_d.shlba - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetypestub - MWProject_MacOSX_vmaddress4096 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsPragma - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWProject_PPC_typeStubLibrary - MWProject_PPC_outfilewx_PPC_d.shlba - MWProject_PPC_filecreator???? - MWProject_PPC_filetypestub - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmangletrue - PDisasmX86_verbosetrue - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - ::include: - :wxshlba_cwc_d.pch - MacOS - Text - Debug - - - PathRelative - Project - ::include: - :wxshlba_cwc_d.pch++ - MacOS - Text - Debug - - - - - PathRelative - Project - ::include: - :wxshlba_cwc_d.pch - MacOS - - - PathRelative - Project - ::include: - :wxshlba_cwc_d.pch++ - MacOS - - - - - wxlib Mach-O debug - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathunix - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path../lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMacOS X Support/Headers/(wchar_t Support fix) - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/include - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C++ - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMacOS X Support - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/lib - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathSystem/Library/Frameworks - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathtrue - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS X PPC Linker - PreLinker - PostLinker - Targetnamewxlib Mach-O debug - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMDYL - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMLIB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.arr - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.axp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.lcf - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.m - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.mm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchmm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.plc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ploc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.wke - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.a - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.dylib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.gif - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.icns - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.jpg - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.nib - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.pl - CompilerPerl Tool - EditLanguagePerl - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.plist - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.psh - CompilerShell Tool - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.sh - CompilerShell Tool - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.strings - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.tiff - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator1 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wx_cwc_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline1 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatGeneric - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesOutOfLine - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym1 - MWLinker_MacOSX_symfullpath1 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeLibrary - MWProject_MacOSX_outfilewx_MACH_d.lib - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetype???? - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_CARBON_d.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmanglefalse - PDisasmX86_verbosefalse - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - Name - db.cpp - MacOS - Text - Debug - - - Name - dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - Name - colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - PathRelative - Project - unix - utilsunx.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - MSL/MSL_C - MSL_MacOS/Src/console_OS_X.c - Unix - Text - Debug - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Runtime/Libs/MSL_Runtime_Mach-O_D.a - Unix - Library - Debug - - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - Text - Debug - - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - ::include: - wx_cwc_d.pch - Unix - Text - Debug - - - PathRelative - Project - ::include: - wx_cwc_d.pch++ - Unix - Text - Debug - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - baseunix.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - drawer.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stockitem.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - taskbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_html.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_split.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_text.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlres.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - gsocket.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - uri.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - gsockosx.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - archive.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - utilsexc_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - stdpaths.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - dlunix.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - Text - Debug - - - - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - Name - db.cpp - MacOS - - - Name - dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - Name - colrdlgg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - unix - utilsunx.cpp - Unix - - - PathRelative - CodeWarrior - MSL/MSL_C - MSL_MacOS/Src/console_OS_X.c - Unix - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Runtime/Libs/MSL_Runtime_Mach-O_D.a - Unix - - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - - - PathRelative - Project - ::include: - wx_cwc_d.pch - Unix - - - PathRelative - Project - ::include: - wx_cwc_d.pch++ - Unix - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - Project - unix - baseunix.cpp - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - PathRelative - Project - :mac:carbon: - drawer.cpp - Unix - - - PathRelative - Project - :common: - stockitem.cpp - Unix - - - PathRelative - Project - :mac:carbon: - taskbar.cpp - Unix - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - - - PathRelative - Project - xrc - xh_html.cpp - Unix - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - - - PathRelative - Project - xrc - xh_split.cpp - Unix - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - - - PathRelative - Project - xrc - xh_text.cpp - Unix - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - - - PathRelative - Project - xrc - xmlres.cpp - Unix - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - - - PathRelative - Project - unix - gsocket.cpp - Unix - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - - - PathRelative - Project - :common: - uri.cpp - Unix - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - - - PathRelative - Project - mac/corefoundation - gsockosx.cpp - Unix - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - - - PathRelative - Project - :common: - archive.cpp - Unix - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - - - PathRelative - Project - mac/corefoundation - utilsexc_cf.cpp - Unix - - - PathRelative - Project - unix - stdpaths.cpp - Unix - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - - - PathRelative - Project - unix - dlunix.cpp - Unix - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - - PathRelative - OS X Volume - System/Library/Frameworks - Carbon.framework - Unix - - Carbon - - - - PathRelative - OS X Volume - System/Library/Frameworks - System.framework - Unix - - System - - - - - wxlib Mach-O release - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathunix - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path../lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMacOS X Support/Headers/(wchar_t Support fix) - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/include - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C++ - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMacOS X Support - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/lib - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathSystem/Library/Frameworks - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathtrue - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS X PPC Linker - PreLinker - PostLinker - Targetnamewxlib Mach-O release - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMDYL - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMLIB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.arr - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.axp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.lcf - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.m - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.mm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchmm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.plc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ploc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.wke - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.a - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.dylib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.gif - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.icns - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.jpg - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.nib - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.pl - CompilerPerl Tool - EditLanguagePerl - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.plist - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.psh - CompilerShell Tool - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.sh - CompilerShell Tool - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.strings - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.tiff - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator0 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wx_cwc.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline1 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatGeneric - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesOutOfLine - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel4 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath0 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsReferencedGlobals - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainnamestart - - - MWProject_MacOSX_typeLibrary - MWProject_MacOSX_outfilewx_MACH.lib - MWProject_MacOSX_filecreator???? - MWProject_MacOSX_filetype???? - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_CARBON_d.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmanglefalse - PDisasmX86_verbosefalse - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :extended.c - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :process.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :docview.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :string.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :stream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :intl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :socket.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :memory.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :event.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :url.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :object.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :http.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :module.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :validate.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :file.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :config.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :variant.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :paper.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :log.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - Text - Debug - - - Name - db.cpp - MacOS - Text - Debug - - - Name - dobjcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - Text - Debug - - - Name - colrdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - Text - Debug - - - Name - metafile.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :filename.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :containr.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :effects.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :regex.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - Text - Debug - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - Text - Debug - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - Project - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - Project - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - Project - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - Project - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - Project - - - - PathRelative - Project - unix - utilsunx.cpp - Unix - Text - Debug - - - PathRelative - CodeWarrior - MSL/MSL_C - MSL_MacOS/Src/console_OS_X.c - Unix - Text - Debug - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Runtime/Libs/MSL_Runtime_Mach-O_D.a - Unix - Library - Debug - - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - Text - Debug - - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - Library - Debug, TargetOutputFile - - - PathRelative - Project - ::include: - wx_cwc.pch - Unix - Text - Debug - - - PathRelative - Project - ::include: - wx_cwc.pch++ - Unix - Text - Debug - - - PathRelative - Project - :common: - datacmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - Text - Debug - - - PathRelative - Project - :common: - appbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - init.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - baseunix.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - renderg.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - Text - Debug - - - PathRelative - Project - xml - xml.cpp - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - Text - Debug - - - PathRelative - Project - expat/lib - xmltok.c - Unix - Text - Debug - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - drawer.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stockitem.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - taskbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_html.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_split.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_text.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlres.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - gsocket.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - uri.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - utilsexc_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - Text - Debug - - - PathRelative - Project - mac/corefoundation - gsockosx.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - archive.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - stdpaths.cpp - Unix - Text - Debug - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - Text - Debug - - - PathRelative - Project - unix - dlunix.cpp - Unix - Text - Debug - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - Text - Debug - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - Text - Debug - - - - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - - - PathRelative - Project - :common: - :sckipc.cpp - MacOS - - - PathRelative - Project - :common: - :matrix.cpp - MacOS - - - PathRelative - Project - :common: - :tbarbase.cpp - MacOS - - - PathRelative - Project - :common: - :imagjpeg.cpp - MacOS - - - PathRelative - Project - :common: - :longlong.cpp - MacOS - - - PathRelative - Project - :common: - :docmdi.cpp - MacOS - - - PathRelative - Project - :common: - :appcmn.cpp - MacOS - - - PathRelative - Project - :common: - :utilscmn.cpp - MacOS - - - PathRelative - Project - :common: - :dynlib.cpp - MacOS - - - PathRelative - Project - :common: - :extended.c - MacOS - - - PathRelative - Project - :common: - :sckstrm.cpp - MacOS - - - PathRelative - Project - :common: - :zstream.cpp - MacOS - - - PathRelative - Project - :common: - :process.cpp - MacOS - - - PathRelative - Project - :common: - :docview.cpp - MacOS - - - PathRelative - Project - :common: - :sizer.cpp - MacOS - - - PathRelative - Project - :common: - :imagall.cpp - MacOS - - - PathRelative - Project - :common: - :imaggif.cpp - MacOS - - - PathRelative - Project - :common: - :imagpcx.cpp - MacOS - - - PathRelative - Project - :common: - :cmndata.cpp - MacOS - - - PathRelative - Project - :common: - :ftp.cpp - MacOS - - - PathRelative - Project - :common: - :menucmn.cpp - MacOS - - - PathRelative - Project - :common: - :string.cpp - MacOS - - - PathRelative - Project - :common: - :wfstream.cpp - MacOS - - - PathRelative - Project - :common: - :stream.cpp - MacOS - - - PathRelative - Project - :common: - :gdicmn.cpp - MacOS - - - PathRelative - Project - :common: - :protocol.cpp - MacOS - - - PathRelative - Project - :common: - :layout.cpp - MacOS - - - PathRelative - Project - :common: - :valgen.cpp - MacOS - - - PathRelative - Project - :common: - :intl.cpp - MacOS - - - PathRelative - Project - :common: - :list.cpp - MacOS - - - PathRelative - Project - :common: - :socket.cpp - MacOS - - - PathRelative - Project - :common: - :hash.cpp - MacOS - - - PathRelative - Project - :common: - :dlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :gifdecod.cpp - MacOS - - - PathRelative - Project - :common: - :filefn.cpp - MacOS - - - PathRelative - Project - :common: - :wincmn.cpp - MacOS - - - PathRelative - Project - :common: - :wxchar.cpp - MacOS - - - PathRelative - Project - :common: - :memory.cpp - MacOS - - - PathRelative - Project - :common: - :mstream.cpp - MacOS - - - PathRelative - Project - :common: - :lboxcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_inet.cpp - MacOS - - - PathRelative - Project - :common: - :event.cpp - MacOS - - - PathRelative - Project - :common: - :image.cpp - MacOS - - - PathRelative - Project - :common: - :ipcbase.cpp - MacOS - - - PathRelative - Project - :common: - :tokenzr.cpp - MacOS - - - PathRelative - Project - :common: - :txtstrm.cpp - MacOS - - - PathRelative - Project - :common: - :filesys.cpp - MacOS - - - PathRelative - Project - :common: - :url.cpp - MacOS - - - PathRelative - Project - :common: - :fs_zip.cpp - MacOS - - - PathRelative - Project - :common: - :prntbase.cpp - MacOS - - - PathRelative - Project - :common: - :dcbase.cpp - MacOS - - - PathRelative - Project - :common: - :object.cpp - MacOS - - - PathRelative - Project - :common: - :http.cpp - MacOS - - - PathRelative - Project - :common: - :module.cpp - MacOS - - - PathRelative - Project - :common: - :validate.cpp - MacOS - - - PathRelative - Project - :common: - :file.cpp - MacOS - - - PathRelative - Project - :common: - :config.cpp - MacOS - - - PathRelative - Project - :common: - :fileconf.cpp - MacOS - - - PathRelative - Project - :common: - :timercmn.cpp - MacOS - - - PathRelative - Project - :common: - :framecmn.cpp - MacOS - - - PathRelative - Project - :common: - :textfile.cpp - MacOS - - - PathRelative - Project - :common: - :dynarray.cpp - MacOS - - - PathRelative - Project - :common: - :choiccmn.cpp - MacOS - - - PathRelative - Project - :common: - :helpbase.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlsub.cpp - MacOS - - - PathRelative - Project - :common: - :ctrlcmn.cpp - MacOS - - - PathRelative - Project - :common: - :strconv.cpp - MacOS - - - PathRelative - Project - :common: - :sckfile.cpp - MacOS - - - PathRelative - Project - :common: - :valtext.cpp - MacOS - - - PathRelative - Project - :common: - :datstrm.cpp - MacOS - - - PathRelative - Project - :common: - :sckaddr.cpp - MacOS - - - PathRelative - Project - :common: - :variant.cpp - MacOS - - - PathRelative - Project - :common: - :dbtable.cpp - MacOS - - - PathRelative - Project - :common: - :fontcmn.cpp - MacOS - - - PathRelative - Project - :common: - :ffile.cpp - MacOS - - - PathRelative - Project - :common: - :paper.cpp - MacOS - - - PathRelative - Project - :common: - :clipcmn.cpp - MacOS - - - PathRelative - Project - :common: - :imagpnm.cpp - MacOS - - - PathRelative - Project - :common: - :imagpng.cpp - MacOS - - - PathRelative - Project - :common: - :imagbmp.cpp - MacOS - - - PathRelative - Project - :common: - :zipstrm.cpp - MacOS - - - PathRelative - Project - :common: - :log.cpp - MacOS - - - PathRelative - Project - :common: - :textcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :laywin.cpp - MacOS - - - PathRelative - Project - :generic: - :busyinfo.cpp - MacOS - - - PathRelative - Project - :generic: - :listctrl.cpp - MacOS - - - PathRelative - Project - :generic: - :textdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :tipdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :numdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :sashwin.cpp - MacOS - - - PathRelative - Project - :generic: - :dcpsg.cpp - MacOS - - - PathRelative - Project - :generic: - :panelg.cpp - MacOS - - - PathRelative - Project - :generic: - :tabg.cpp - MacOS - - - PathRelative - Project - :generic: - :choicdgg.cpp - MacOS - - - PathRelative - Project - :generic: - :wizard.cpp - MacOS - - - PathRelative - Project - :generic: - :progdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :caret.cpp - MacOS - - - PathRelative - Project - :generic: - :statusbr.cpp - MacOS - - - PathRelative - Project - :generic: - :logg.cpp - MacOS - - - PathRelative - Project - :generic: - :fontdlgg.cpp - MacOS - - - PathRelative - Project - :generic: - :splitter.cpp - MacOS - - - Name - db.cpp - MacOS - - - Name - dobjcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fontmap.cpp - MacOS - - - PathRelative - Project - :common: - :geometry.cpp - MacOS - - - Name - colrdlgg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - - - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - - - PathRelative - Project - :common: - :datetime.cpp - MacOS - - - PathRelative - Project - :common: - :encconv.cpp - MacOS - - - PathRelative - Project - :common: - :mimecmn.cpp - MacOS - - - Name - metafile.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - - - PathRelative - Project - :common: - :imagtiff.cpp - MacOS - - - PathRelative - Project - :generic: - :treectlg.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - - - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - PathRelative - Project - :common: - :treebase.cpp - MacOS - - - PathRelative - Project - :common: - :cshelp.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - - - PathRelative - Project - :common: - :filename.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - - - PathRelative - Project - :common: - :xpmdecod.cpp - MacOS - - - PathRelative - Project - :common: - :imagxpm.cpp - MacOS - - - PathRelative - Project - :generic: - :dirctrlg.cpp - MacOS - - - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - PathRelative - Project - :generic: - :tipwin.cpp - MacOS - - - PathRelative - Project - :common: - :radiocmn.cpp - MacOS - - - PathRelative - Project - :common: - :nbkbase.cpp - MacOS - - - PathRelative - Project - :generic: - :scrlwing.cpp - MacOS - - - PathRelative - Project - :common: - :gaugecmn.cpp - MacOS - - - PathRelative - Project - :common: - :containr.cpp - MacOS - - - PathRelative - Project - :common: - :quantize.cpp - MacOS - - - PathRelative - Project - :common: - :toplvcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - - - PathRelative - Project - :generic: - :gridsel.cpp - MacOS - - - PathRelative - Project - :generic: - :grid.cpp - MacOS - - - PathRelative - Project - :common: - :statbar.cpp - MacOS - - - PathRelative - Project - :common: - :clntdata.cpp - MacOS - - - PathRelative - Project - :common: - :textbuf.cpp - MacOS - - - PathRelative - Project - :generic: - :dragimgg.cpp - MacOS - - - PathRelative - Project - :generic: - :calctrl.cpp - MacOS - - - PathRelative - Project - :common: - :bmpbase.cpp - MacOS - - - PathRelative - Project - :common: - :cmdline.cpp - MacOS - - - PathRelative - Project - :common: - :cmdproc.cpp - MacOS - - - PathRelative - Project - :common: - :dndcmn.cpp - MacOS - - - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - - - PathRelative - Project - :common: - :dbgrid.cpp - MacOS - - - PathRelative - Project - :common: - :dircmn.cpp - MacOS - - - PathRelative - Project - :common: - :dseldlg.cpp - MacOS - - - PathRelative - Project - :common: - :dynload.cpp - MacOS - - - PathRelative - Project - :common: - :effects.cpp - MacOS - - - PathRelative - Project - :common: - :fddlgcmn.cpp - MacOS - - - PathRelative - Project - :common: - :fs_mem.cpp - MacOS - - - PathRelative - Project - :common: - :regex.cpp - MacOS - - - PathRelative - Project - :common: - :sysopt.cpp - MacOS - - - PathRelative - Project - :common: - :imagiff.cpp - MacOS - - - PathRelative - Project - :generic: - :splash.cpp - MacOS - - - PathRelative - Project - :generic: - :fdrepdlg.cpp - MacOS - - - PathRelative - Project - :generic: - :gridctrl.cpp - MacOS - - - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - PathRelative - Project - :common: - :hashmap.cpp - MacOS - - - PathRelative - Project - :generic: - :dirdlgg.cpp - MacOS - - - PathRelative - Project - :common: - :iconbndl.cpp - MacOS - - - PathRelative - Project - :common: - :artprov.cpp - MacOS - - - PathRelative - Project - :common: - :artstd.cpp - MacOS - - - PathRelative - Project - :common: - :imagfill.cpp - MacOS - - - PathRelative - Project - :common: - :msgout.cpp - MacOS - - - PathRelative - Project - :common: - :settcmn.cpp - MacOS - - - PathRelative - Project - :common: - :popupcmn.cpp - MacOS - - - PathRelative - Project - :generic: - :printps.cpp - MacOS - - - PathRelative - Project - unix - utilsunx.cpp - Unix - - - PathRelative - CodeWarrior - MSL/MSL_C - MSL_MacOS/Src/console_OS_X.c - Unix - - - PathRelative - CodeWarrior - MacOS X Support - Libraries/Runtime/Libs/MSL_Runtime_Mach-O_D.a - Unix - - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - - - PathRelative - Project - ::include: - wx_cwc.pch - Unix - - - PathRelative - Project - ::include: - wx_cwc.pch++ - Unix - - - PathRelative - Project - :common: - datacmn.cpp - Unix - - - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - PathRelative - Project - :generic: - :selstore.cpp - MacOS - - - PathRelative - Project - :common: - appbase.cpp - Unix - - - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - PathRelative - Project - :common: - init.cpp - Unix - - - PathRelative - Project - unix - baseunix.cpp - Unix - - - PathRelative - Project - :generic: - renderg.cpp - Unix - - - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - - - PathRelative - Project - xml - xml.cpp - Unix - - - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - PathRelative - Project - expat/lib - xmltok.c - Unix - - - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - PathRelative - Project - :mac:carbon: - drawer.cpp - Unix - - - PathRelative - Project - :common: - stockitem.cpp - Unix - - - PathRelative - Project - :mac:carbon: - taskbar.cpp - Unix - - - PathRelative - Project - xrc - xh_bmp.cpp - Unix - - - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - - - PathRelative - Project - xrc - xh_bttn.cpp - Unix - - - PathRelative - Project - xrc - xh_cald.cpp - Unix - - - PathRelative - Project - xrc - xh_chckb.cpp - Unix - - - PathRelative - Project - xrc - xh_chckl.cpp - Unix - - - PathRelative - Project - xrc - xh_choic.cpp - Unix - - - PathRelative - Project - xrc - xh_combo.cpp - Unix - - - PathRelative - Project - xrc - xh_dlg.cpp - Unix - - - PathRelative - Project - xrc - xh_frame.cpp - Unix - - - PathRelative - Project - xrc - xh_gauge.cpp - Unix - - - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - - - PathRelative - Project - xrc - xh_html.cpp - Unix - - - PathRelative - Project - xrc - xh_listb.cpp - Unix - - - PathRelative - Project - xrc - xh_listc.cpp - Unix - - - PathRelative - Project - xrc - xh_menu.cpp - Unix - - - PathRelative - Project - xrc - xh_notbk.cpp - Unix - - - PathRelative - Project - xrc - xh_panel.cpp - Unix - - - PathRelative - Project - xrc - xh_radbt.cpp - Unix - - - PathRelative - Project - xrc - xh_radbx.cpp - Unix - - - PathRelative - Project - xrc - xh_scrol.cpp - Unix - - - PathRelative - Project - xrc - xh_scwin.cpp - Unix - - - PathRelative - Project - xrc - xh_sizer.cpp - Unix - - - PathRelative - Project - xrc - xh_slidr.cpp - Unix - - - PathRelative - Project - xrc - xh_spin.cpp - Unix - - - PathRelative - Project - xrc - xh_split.cpp - Unix - - - PathRelative - Project - xrc - xh_statbar.cpp - Unix - - - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - - - PathRelative - Project - xrc - xh_stbox.cpp - Unix - - - PathRelative - Project - xrc - xh_stlin.cpp - Unix - - - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - - - PathRelative - Project - xrc - xh_text.cpp - Unix - - - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - - - PathRelative - Project - xrc - xh_toolb.cpp - Unix - - - PathRelative - Project - xrc - xh_tree.cpp - Unix - - - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - - - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - - - PathRelative - Project - xrc - xmlres.cpp - Unix - - - PathRelative - Project - xrc - xmlrsall.cpp - Unix - - - PathRelative - Project - unix - gsocket.cpp - Unix - - - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - - - PathRelative - Project - :common: - uri.cpp - Unix - - - PathRelative - Project - mac/corefoundation - utilsexc_cf.cpp - Unix - - - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - - - PathRelative - Project - mac/corefoundation - gsockosx.cpp - Unix - - - PathRelative - Project - :mac:carbon: - display.cpp - Unix - - - PathRelative - Project - :common: - archive.cpp - Unix - - - PathRelative - Project - :generic: - datectlg.cpp - Unix - - - PathRelative - Project - :common: - stdpbase.cpp - Unix - - - PathRelative - Project - unix - stdpaths.cpp - Unix - - - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - - - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - - - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - - - PathRelative - Project - xrc - xh_listbk.cpp - Unix - - - PathRelative - Project - :common: - gbsizer.cpp - Unix - - - PathRelative - Project - :generic: - choicbkg.cpp - Unix - - - PathRelative - Project - :generic: - listbkg.cpp - Unix - - - PathRelative - Project - unix - dlunix.cpp - Unix - - - PathRelative - Project - :common: - debugrpt.cpp - Unix - - - PathRelative - Project - xrc - xh_mdi.cpp - Unix - - - - - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - - - - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - - - - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - - - - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - - - - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - Mach-O - Build, LinkAgainst - - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - - - - - - PathRelative - OS X Volume - System/Library/Frameworks - Carbon.framework - Unix - - Carbon - - - - PathRelative - OS X Volume - System/Library/Frameworks - System.framework - Unix - - System - - - - - wxshlba Mach-O release - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathstrue - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path::include: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path::art: - PathFormatMacOS - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:generic: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:mac:carbon: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:common: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:zlib: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:png: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:jpeg: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:iodbc: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:tiff: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:html: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path:regex: - PathFormatMacOS - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathunix - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path../lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxml - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathexpat/lib - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmac/corefoundation - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathxrc - PathFormatUnix - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMacOS X Support/Headers/(wchar_t Support fix) - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/include - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMSL/MSL_C++ - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathMacOS X Support - PathFormatUnix - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathusr/lib - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathSystem/Library/Frameworks - PathFormatUnix - PathRootOS X Volume - - Recursivefalse - FrameworkPathtrue - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerMacOS X PPC Linker - PreLinker - PostLinker - Targetnamewxshlba Mach-O release - OutputDirectory - Path::lib: - PathFormatMacOS - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeAPPL - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeAppl - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeMDYL - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMLIB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMMLB - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMPLF - FileExtension - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeMWCD - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeRSRC - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.arr - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.axp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.exp - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.lcf - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.m - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.mm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pchmm - CompilerMW C/C++ PPC Mac OS X - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.plc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.ploc - CompilerProperty List Compiler - EditLanguageProperty List - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.r - CompilerRez - EditLanguageRez - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.wke - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypedocu - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileTypersrc - FileExtension - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.a - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.dylib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.gif - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.icns - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.jpg - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerMachO Importer - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.nib - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.pl - CompilerPerl Tool - EditLanguagePerl - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.plist - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.ppob - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.psh - CompilerShell Tool - EditLanguage - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.rsrc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFiletrue - IgnoredByMakefalse - - - FileExtension.sh - CompilerShell Tool - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.strings - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.tiff - CompilerCopy To Package - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - - - CacheModDatestrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - BrowserGenerator0 - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - CodeCompletionPrefixFileNameMacHeaders.c - CodeCompletionMacroFileNameMacOS_Carbon_C++_Macros.h - - - ConsoleEncoding0 - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - CoreID0 - JTAGClockSpeed8000 - IsMultiCorefalse - OSDownloadfalse - UseGlobalOSDownloadfalse - OSDownloadConnectionName - OSDownloadPath - AltDownloadfalse - AltDownloadConnectionName - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamewx/wxshlba_cwc.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars1 - MWFrontEnd_C_autoinline1 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - MWFrontEnd_C_templateparser0 - MWFrontEnd_C_c990 - MWFrontEnd_C_bottomupinline1 - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0ÿÂà -ž0¼,šì - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion1 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut10 - MWVJavaDebugging_SupportSlowDevicesfalse - MWVJavaDebugging_UseRemoteLaunchAgentfalse - MWVJavaDebugging_LaunchVMasServerfalse - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - MWJava_Language_enableAssertsfalse - MWJava_Language_targetVM1.1 - - - Manifest-JAD Attributes - - AttributeMain-Class - ValueAuto-Generated - - - - - MWJava_MRJAppBuilder_outFileMRJApplication - MWJava_MRJAppBuilder_mergefalse - MWJava_MRJAppBuilder_quitMenutrue - MWJava_MRJAppBuilder_growfalse - MWJava_MRJAppBuilder_stdoutTypeConsole - MWJava_MRJAppBuilder_stderrTypeConsole - MWJava_MRJAppBuilder_stdinTypeConsole - MWJava_MRJAppBuilder_appIconPVersion0 - MWJava_MRJAppBuilder_appIconPType0 - MWJava_MRJAppBuilder_appIconPFormat0 - MWJava_MRJAppBuilder_appIconPTree - MWJava_MRJAppBuilder_appIconFile - MWJava_MRJAppBuilder_splashScreenPVersion0 - MWJava_MRJAppBuilder_splashScreenPType0 - MWJava_MRJAppBuilder_splashScreenPFormat0 - MWJava_MRJAppBuilder_splashScreenPTree - MWJava_MRJAppBuilder_splashScreenPICTFile - MWJava_MRJAppBuilder_aboutName - MWJava_MRJAppBuilder_stdoutPVersion0 - MWJava_MRJAppBuilder_stdoutPType0 - MWJava_MRJAppBuilder_stdoutPFormat0 - MWJava_MRJAppBuilder_stdoutPTree - MWJava_MRJAppBuilder_stdoutFile - MWJava_MRJAppBuilder_stdoutAppendfalse - MWJava_MRJAppBuilder_stderrPType0 - MWJava_MRJAppBuilder_stderrPFormat0 - MWJava_MRJAppBuilder_stderrPTree - MWJava_MRJAppBuilder_stderrFile - MWJava_MRJAppBuilder_stderrAppendfalse - MWJava_MRJAppBuilder_stdinPType0 - MWJava_MRJAppBuilder_stdinPFormat0 - MWJava_MRJAppBuilder_stdinPTree - MWJava_MRJAppBuilder_stdinFile - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - MWJava_Output_preverify0 - MWJava_Output_genJad0 - MWJava_Output_obfuscate0 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1145457748 - MWJava_Proj_HTMLAppNameMetrowerks Java - MWJava_Proj_PathVersion1 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32NameInternet Explorer - MWJava_Proj_compress0 - MWJava_Proj_simulator0 - MWJava_Proj_useVM\000\000macosx - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Deprecated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames1 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_fcreator1297303877 - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DLGX - ckid - Proj - WSPC - - - - FileLockedfalse - ResourcesMapIsReadOnlyfalse - PrinterDriverIsMultiFinderCompatiblefalse - Invisiblefalse - HasBundlefalse - NameLockedfalse - Stationeryfalse - HasCustomIconfalse - Sharedfalse - HasBeenInitedfalse - Label0 - Comments - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path - PathFormatMacOS - PathRootAbsolute - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path - PathFormatGeneric - PathRootAbsolute - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeAPPL - - - MWCodeGen_PPC_structalignmentPPC_mw - MWCodeGen_PPC_tracebacktablesOutOfLine - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_function_align4 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_largetoc0 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_vectortocdata0 - MWCodeGen_PPC_poolconst0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_linkerpoolsstrings0 - MWCodeGen_PPC_volatileasm0 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_altivec_move_block0 - MWCodeGen_PPC_strictIEEEfp0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_genfsel0 - MWCodeGen_PPC_orderedfpcmp0 - - - MWCodeGen_MachO_structalignmentPPC_mw - MWCodeGen_MachO_profiler_enumOff - MWCodeGen_MachO_processorGeneric - MWCodeGen_MachO_function_align4 - MWCodeGen_MachO_common0 - MWCodeGen_MachO_peephole1 - MWCodeGen_MachO_readonlystrings0 - MWCodeGen_MachO_linkerpoolsstrings1 - MWCodeGen_MachO_volatileasm0 - MWCodeGen_MachO_schedule0 - MWCodeGen_MachO_altivec0 - MWCodeGen_MachO_vecmove0 - MWCodeGen_MachO_fp_ieee_strict0 - MWCodeGen_MachO_fpcontract1 - MWCodeGen_MachO_genfsel0 - MWCodeGen_MachO_fp_cmps_ordered0 - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym1 - MWDisassembler_PPC_shownames1 - - - GlobalOptimizer_PPC_optimizationlevelLevel4 - GlobalOptimizer_PPC_optforSpeed - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode1 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_MacOSX_linksym0 - MWLinker_MacOSX_symfullpath1 - MWLinker_MacOSX_nolinkwarnings0 - MWLinker_MacOSX_linkmap0 - MWLinker_MacOSX_dontdeadstripinitcode0 - MWLinker_MacOSX_permitmultdefs1 - MWLinker_MacOSX_use_objectivec_semantics0 - MWLinker_MacOSX_strip_debug_symbols0 - MWLinker_MacOSX_split_segs0 - MWLinker_MacOSX_report_msl_overloads0 - MWLinker_MacOSX_objects_follow_linkorder0 - MWLinker_MacOSX_linkmodeFast - MWLinker_MacOSX_exportsPragma - MWLinker_MacOSX_sortcodeNone - MWLinker_MacOSX_mainname - - - MWProject_MacOSX_typeLibrary - MWProject_MacOSX_outfilewxshlba_Mach.lib - MWProject_MacOSX_filecreatorCWIE - MWProject_MacOSX_filetypeMLIB - MWProject_MacOSX_vmaddress0 - MWProject_MacOSX_usedefaultvmaddr1 - MWProject_MacOSX_flatrsrc0 - MWProject_MacOSX_flatrsrcfilename - MWProject_MacOSX_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MacOSX_installpath./ - MWProject_MacOSX_dont_prebind0 - MWProject_MacOSX_flat_namespace0 - MWProject_MacOSX_frameworkversionA - MWProject_MacOSX_currentversion0 - MWProject_MacOSX_flat_oldimpversion0 - - - MWLinker_MachO_exportsNone - MWLinker_MachO_mainnamestart - MWLinker_MachO_currentversion0 - MWLinker_MachO_compatibleversion0 - MWLinker_MachO_symfullpath0 - MWLinker_MachO_supresswarnings0 - MWLinker_MachO_multisymerror0 - MWLinker_MachO_prebind1 - MWLinker_MachO_deadstrip1 - MWLinker_MachO_objectivecsemantics0 - MWLinker_MachO_whichfileloaded0 - MWLinker_MachO_whyfileloaded0 - MWLinker_MachO_readonlyrelocsErrors - MWLinker_MachO_undefinedsymbolsErrors - MWLinker_MachO_twolevelnamespace1 - MWLinker_MachO_stripdebugsymbols0 - - - MWProject_MachO_typeExecutable - MWProject_MachO_outfilea.exe - MWProject_MachO_filecreator???? - MWProject_MachO_filetypeMEXE - MWProject_MachO_vmaddress4096 - MWProject_MachO_flatrsrc1 - MWProject_MachO_flatrsrcfilenamea.rsrc - MWProject_MachO_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_MachO_installpath./ - MWProject_MachO_frameworkversion - - - MWPEF_exportsAll - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentnamewxwin - MWPEF_collapsereloads0 - - - MWProject_PPC_typeLibrary - MWProject_PPC_outfilewx_CARBON_d.lib - MWProject_PPC_filecreator???? - MWProject_PPC_filetype???? - MWProject_PPC_size0 - MWProject_PPC_minsize0 - MWProject_PPC_stacksize0 - MWProject_PPC_flags0 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - PList_OutputTypeFile - PList_OutputEncodingUTF-8 - PList_Prefix - PList_FileFilenameInfo.plist - PList_FileDirectory - Path: - PathFormatMacOS - PathRootProject - - PList_ResourceTypeplst - PList_ResourceID0 - PList_ResourceName - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWinRC_prefixname - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_name_manglingMWWin32 - MWCodeGen_X86_use_extinst0 - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_extinst_cmov0 - MWCodeGen_X86_extinst_sse0 - MWCodeGen_X86_extinst_sse20 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_optimizeasm0 - MWCodeGen_X86_disableopts0 - MWCodeGen_X86_profile0 - MWLinker_X86_runtimeCustom - MWCodeGen_X86_readonlystrings0 - - - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWCOFF_X86_opsysmajorid4 - MWCOFF_X86_opsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWCOFF_X86_coff_flags0 - MWCOFF_X86_dll_flags0 - MWProject_X86_baseaddress4194304 - MWCOFF_X86_filealign512 - MWCOFF_X86_sectionalign4096 - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSectHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showDatatrue - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showRawfalse - PDisasmX86_showAllRawfalse - PDisasmX86_showSourcefalse - PDisasmX86_showRelocationtrue - PDisasmX86_showHextrue - PDisasmX86_showCommentsfalse - PDisasmX86_showSymDefstrue - PDisasmX86_unmanglefalse - PDisasmX86_verbosefalse - PDisasmX86_resolveRelocstrue - PDisasmX86_resolveLocalsfalse - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - GlobalOptimizer_X86_optimizationlevelLevel0 - GlobalOptimizer_X86_optforSpeed - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym1 - MWLinker_X86_linkCV1 - MWLinker_X86_symfullpathfalse - MWLinker_X86_linkdebugtrue - MWLinker_X86_checksumfalse - MWLinker_X86_zero_init_bssfalse - MWLinker_X86_mergedatafalse - MWLinker_X86_usedefaultlibsfalse - MWLinker_X86_adddefaultlibsfalse - MWLinker_X86_nowarningsfalse - MWLinker_X86_verbosefalse - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_importlib - MWProject_X86_setimportlibdirfalse - MWProject_X86_dontgenerateimportlibfalse - MWProject_X86_oldformatlibfalse - MWProject_X86_replaceobjextensionfalse - MWProject_X86_copyallfilesfalse - - - - PathRelative - Project - ::include: - wxshlba_cwc.pch++ - Unix - Text - Debug - - - PathRelative - Project - ::include: - wxshlba_cwc.pch - Unix - Text - Debug - - - - - PathRelative - Project - ::include: - wxshlba_cwc.pch++ - Unix - - - PathRelative - Project - ::include: - wxshlba_cwc.pch - Unix - - - - - - PathRelative - OS X Volume - System/Library/Frameworks - Carbon.framework - Unix - - Carbon - - - - PathRelative - OS X Volume - System/Library/Frameworks - System.framework - Unix - - System - - - - - - - wxlib Carbon debug - wxlib Carbon release - wxlib Carbon resources - wxshlb Carbon debug - wxshlb Carbon release - wxshlba Carbon debug - wxshlba Carbon release - wxlib Mach-O debug - wxlib Mach-O release - wxshlb Mach-O debug - wxshlb Mach-O release - wxshlba Mach-O debug - wxshlba Mach-O release - all targets - - - - common - - wxshlb Mach-O debug - PathRelative - Project - :common: - accesscmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - appbase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - appcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - archive.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - artprov.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - artstd.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - bmpbase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - bookctrl.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - choicbkg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - choiccmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - clipcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - clntdata.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - cmdline.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - cmdproc.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - cmndata.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - config.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - containr.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - cshelp.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - ctrlcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - ctrlsub.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - datacmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - datetime.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - datstrm.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - db.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dbgrid.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dbtable.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dcbase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - debugrpt.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dircmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dlgcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dndcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dobjcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - docmdi.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - docview.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dpycmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dseldlg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dynarray.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dynlib.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - dynload.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - effects.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - encconv.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - event.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - extended.c - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - fddlgcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - ffile.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - file.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - fileconf.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - filefn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - filename.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - filesys.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - fldlgcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - fmapbase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - fontcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - fontmap.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - framecmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - fs_inet.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - fs_mem.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - fs_zip.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - ftp.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - gaugecmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - gbsizer.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - gdicmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - geometry.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - gifdecod.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - hash.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - hashmap.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - helpbase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - http.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - iconbndl.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imagall.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imagbmp.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - image.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imagfill.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imaggif.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imagiff.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imagjpeg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imagpcx.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imagpng.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imagpnm.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imagtiff.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - imagxpm.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - init.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - intl.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - ipcbase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - layout.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - lboxcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - list.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - log.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - longlong.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - matrix.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - memory.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - menucmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - mimecmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - module.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - msgout.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - mstream.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - nbkbase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - object.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - paper.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - popupcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - prntbase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - process.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - protocol.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - quantize.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - radiocmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - regex.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - rendcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - rgncmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - sckaddr.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - sckfile.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - sckipc.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - sckstrm.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - settcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - sizer.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - socket.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - statbar.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - stdpbase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - stockitem.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - stopwatch.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - strconv.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - stream.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - string.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - sysopt.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - taskbarcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - tbarbase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - textbuf.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - textcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - textfile.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - timercmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - tokenzr.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - toplvcmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - treebase.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - txtstrm.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - uri.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - url.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - utilscmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - valgen.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - validate.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - valtext.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - variant.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - wfstream.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - wincmn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - wxchar.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - xpmdecod.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - zipstrm.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :common: - zstream.cpp - Unix - - - generic - - wxshlb Mach-O debug - PathRelative - Project - :generic: - busyinfo.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - calctrl.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - caret.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - choicdgg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - colrdlgg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - datectlg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - dcpsg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - dirctrlg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - dirdlgg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - dragimgg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - fdrepdlg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - fontdlgg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - grid.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - gridctrl.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - gridsel.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - laywin.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - listbkg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - listctrl.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - logg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - numdlgg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - panelg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - printps.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - progdlgg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - renderg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - sashwin.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - scrlwing.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - selstore.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - splash.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - splitter.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - statusbr.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - tabg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - textdlgg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - tipdlg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - tipwin.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - treectlg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :generic: - wizard.cpp - Unix - - - headers - - wxlib Carbon release - PathRelative - Project - ::include: - :wx_cwc.pch - MacOS - - - wxlib Carbon release - PathRelative - Project - ::include: - :wx_cwc.pch++ - MacOS - - - wxlib Carbon debug - PathRelative - Project - ::include: - :wx_cwc_d.pch - MacOS - - - wxlib Carbon debug - PathRelative - Project - ::include: - wx_cwc_d.pch++ - Unix - - - wxshlb Mach-O release - PathRelative - Project - ::include: - wxshlb_cwc.pch - Unix - - - wxshlb Mach-O release - PathRelative - Project - ::include: - wxshlb_cwc.pch++ - Unix - - - wxshlb Mach-O debug - PathRelative - Project - ::include: - wxshlb_cwc_d.pch - Unix - - - wxshlb Mach-O debug - PathRelative - Project - ::include: - wxshlb_cwc_d.pch++ - Unix - - - wxshlba Carbon release - PathRelative - Project - ::include: - :wxshlba_cwc.pch - MacOS - - - wxshlba Carbon release - PathRelative - Project - ::include: - :wxshlba_cwc.pch++ - MacOS - - - wxshlba Mach-O debug - PathRelative - Project - ::include: - wxshlba_cwc_d.pch - Unix - - - wxshlba Mach-O debug - PathRelative - Project - ::include: - wxshlba_cwc_d.pch++ - Unix - - - html - - wxshlb Mach-O debug - PathRelative - Project - :html: - :helpctrl.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :helpdata.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :helpfrm.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :htmlcell.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :htmlfilt.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :htmlpars.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :htmltag.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :htmlwin.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :htmprint.cpp - MacOS - - modules - - wxshlb Mach-O debug - PathRelative - Project - :html: - :m_style.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :m_dflist.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :m_fonts.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :m_hline.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :m_image.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :m_layout.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :m_links.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :m_list.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :m_pre.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :m_tables.cpp - MacOS - - - - wxshlb Mach-O debug - PathRelative - Project - :html: - :winpars.cpp - MacOS - - - unix - - wxshlb Mach-O debug - PathRelative - Project - unix - baseunix.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - unix - dlunix.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - unix - gsocket.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - unix - stdpaths.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - unix - utilsunx.cpp - Unix - - - xml - - wxshlb Mach-O debug - PathRelative - Project - xml - xml.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - expat/lib - xmlparse.c - Unix - - - wxshlb Mach-O debug - PathRelative - Project - expat/lib - xmlrole.c - Unix - - - wxshlb Mach-O debug - PathRelative - Project - expat/lib - xmltok.c - Unix - - - xrc - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_bmp.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_bmpbt.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_bttn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_cald.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_chckb.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_chckl.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_choic.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_choicbk.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_combo.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_datectrl.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_dlg.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_frame.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_gauge.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_gdctl.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_html.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_listb.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_listbk.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_listc.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_mdi.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_menu.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_notbk.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_panel.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_radbt.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_radbx.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_scrol.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_scwin.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_sizer.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_slidr.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_spin.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_split.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_statbar.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_stbmp.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_stbox.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_stlin.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_sttxt.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_text.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_tglbtn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_toolb.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_tree.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_unkwn.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xh_wizrd.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xmlres.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - xrc - xmlrsall.cpp - Unix - - - mac - corefoundation - - wxshlb Mach-O debug - PathRelative - Project - mac/corefoundation - cfstring.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - mac/corefoundation - gsockosx.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - mac/corefoundation - stdpaths_cf.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - mac/corefoundation - utilsexc_cf.cpp - Unix - - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :accel.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :app.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :bitmap.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :bmpbuttn.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :brush.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :button.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :checkbox.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :checklst.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :choice.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :clipbrd.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :colordlg.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :colour.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :combobox.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :control.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :cursor.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :data.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :dataobj.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :dc.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :dcclient.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :dcmemory.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :dcprint.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :dcscreen.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :dialog.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :dirdlg.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :dirmac.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - display.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :dnd.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - drawer.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :filedlg.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :font.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :fontdlg.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :fontenum.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :fontutil.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :frame.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :gauge.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :gdiobj.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :glcanvas.cpp - MacOS - - - wxlib Carbon debug - PathRelative - Project - :mac:carbon: - gsocket.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :icon.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - imaglist.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :joystick.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :listbox.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :macnotfy.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :main.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :mdi.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :menu.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :menuitem.cpp - MacOS - - - wxshlb Mach-O debug - Name - metafile.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :mimetmac.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :minifram.cpp - MacOS - - morefilex - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - morefilex/MoreFilesX.cpp - Unix - - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :msgdlg.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :notebmac.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :palette.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :pen.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :printdlg.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :printmac.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :radiobox.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :radiobut.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :region.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - renderer.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :scrolbar.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :settings.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :slider.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :spinbutt.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :spinctrl.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :statbmp.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :statbox.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :statbrma.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :statlmac.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :stattext.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :tabctrl.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - taskbar.cpp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :textctrl.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :thread.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :timer.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :toolbar.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :tooltip.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :toplevel.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :uma.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :utils.cpp - MacOS - - - wxlib Carbon debug - PathRelative - Project - :mac:carbon: - :utilsexc.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :sound.cpp - MacOS - - - wxshlb Mach-O debug - PathRelative - Project - :mac:carbon: - :window.cpp - MacOS - - - mac resources - - wxlib Carbon resources - Name - apprsrc.r - MacOS - - - wxlib Carbon resources - Name - carbrsrc.r - MacOS - - - wxlib Carbon resources - Name - corersrc.r - MacOS - - - wx-addon libraries - - wxshlb Mach-O debug - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :png: - pngM8.mcp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - wxshlb Mach-O debug - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - mac libraries - carbon - - wxlib Carbon debug - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonFrameworkLib - Unix - - - wxlib Carbon debug - PathRelative - CodeWarrior - :MacOS Support: - Universal/Libraries/StubLibraries/CarbonLib - Unix - - - wxlib Carbon debug - PathRelative - CodeWarrior - :MacOS Support: - MetroNub Utilities/MNU Carbon.Lib - Unix - - - - libraries - - wxshlb Mach-O debug - PathRelative - CodeWarrior - MacOS X Support - Libraries/Startup/dylib1.o - Unix - - - wxshlb Carbon release - PathRelative - CodeWarrior - :MSL: - MSL_C/MSL_MacOS/Src/console.stubs.c - Unix - - - wxshlb Mach-O debug - PathRelative - CodeWarrior - MSL/MSL_C - MSL_MacOS/Src/console_OS_X.c - Unix - - - wxshlb Carbon debug - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_ShLibRuntime_PPC_D.Lib - Unix - - - wxshlb Carbon release - PathRelative - CodeWarrior - :MacOS Support: - :Libraries:Runtime:Libs:MSL_ShLibRuntime_PPC.Lib - MacOS - - - wxshlb Carbon release - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_All_Carbon.Shlb - Unix - - - wxshlb Carbon debug - PathRelative - CodeWarrior - :MacOS Support: - Libraries/Runtime/Libs/MSL_All_Carbon_D.Shlb - Unix - - - wxshlb Mach-O release - PathRelative - CodeWarrior - MacOS X Support - Libraries/Runtime/Libs/MSL_Runtime_Mach-O.a - Unix - - - wxshlb Mach-O debug - PathRelative - CodeWarrior - MacOS X Support - Libraries/Runtime/Libs/MSL_Runtime_Mach-O_D.a - Unix - - - - wxlib Carbon debug - FileRelative - ../../lib/jpeg_PPC.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - wxlib Carbon debug - FileRelative - ../../lib/png_PPC.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - wxlib Carbon debug - FileRelative - ../../lib/zlib_PPC.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - wxlib Carbon debug - FileRelative - ../../lib/tif_PPC.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - wxlib Carbon debug - FileRelative - ../../lib/regex_PPC.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - wxshlb Mach-O debug - FileRelative - ../../lib/jpeg_MACH.lib - Unix - - PathRelative - Project - :jpeg: - jpegM8.mcp - Unix - - - - wxshlb Mach-O debug - FileRelative - ../../lib/png_MACH.lib - Unix - - PathRelative - Project - :png: - pngM8.mcp - Unix - - - - wxshlb Mach-O debug - FileRelative - ../../lib/zlib_MACH.lib - Unix - - PathRelative - Project - :zlib: - zlibM8.mcp - Unix - - - - wxshlb Mach-O debug - FileRelative - ../../lib/tif_MACH.lib - Unix - - PathRelative - Project - :tiff: - tiffM8.mcp - Unix - - - - wxshlb Mach-O debug - FileRelative - ../../lib/regex_MACH.lib - Unix - - PathRelative - Project - :regex: - regexM8.mcp - Unix - - - - - diff --git a/src/wxWindowsW7.xml b/src/wxWindowsW7.xml deleted file mode 100644 index 32e46d784d..0000000000 --- a/src/wxWindowsW7.xml +++ /dev/null @@ -1,20334 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -]> - - - - - wxlib Win32 debug - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path..\lib\cw7mswd\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path..\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathgeneric - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmsw - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathcommon - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathzlib - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathpng - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathjpeg - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathtiff - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathhtml - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathregex - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMSL - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathWin32-x86 Support - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerWin32 x86 Linker - PreLinker - PostLinker - Targetnamewxlib Win32 debug - OutputDirectory - Path..\lib - PathFormatWindows - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.def - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.ord - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pl - CompilerMW Perl - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.rc - CompilerMW WinRC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiLIB - FileExtension - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiOBJ - FileExtension - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.a - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.o - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.obj - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.res - CompilerWinRes Import - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLstrue - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - Perl_Prefix_Filename - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata1 - MWCodeGen_PPC_vrsave1 - - - MWCodeGen_X86_processorPentiumII - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo1 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosetrue - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle1 - MWFrontEnd_C_prefixname/wx/wx_cw_d.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel8 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0 - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion0 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut25 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames0 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1463898714 - MWJava_Proj_HTMLAppName - MWJava_Proj_PathVersion0 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32Name - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - MWJava_Proj_useJCVM1 - MWJava_Proj_aidData - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DGLX - ckid - Proj - WSPC - mcvs - - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeLPPA - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86_d.lib - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - Resource Flattener Panel - 0100000000000000000000000000000000000000000000000000000000000000 - 0000074F75742E62696E00000000000000000000000000000000000000000000 - 0000 - - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWarning_C_warn_illpragma1 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic1 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual1 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWWinRC_prefixname - - - GlobalOptimizer_X86__optimizationlevelLevel0 - GlobalOptimizer_X86__optforSpeed - - - - PathRelative - Project - common - ftp.cpp - Windows - Text - Debug - - - PathRelative - Project - common - artprov.cpp - Windows - Text - Debug - - - PathRelative - Project - common - artstd.cpp - Windows - Text - Debug - - - PathRelative - Project - common - choiccmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - clipcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - clntdata.cpp - Windows - Text - Debug - - - PathRelative - Project - common - cmdline.cpp - Windows - Text - Debug - - - PathRelative - Project - common - cmdproc.cpp - Windows - Text - Debug - - - PathRelative - Project - common - cmndata.cpp - Windows - Text - Debug - - - PathRelative - Project - common - config.cpp - Windows - Text - Debug - - - PathRelative - Project - common - containr.cpp - Windows - Text - Debug - - - PathRelative - Project - common - cshelp.cpp - Windows - Text - Debug - - - PathRelative - Project - common - ctrlcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - ctrlsub.cpp - Windows - Text - Debug - - - PathRelative - Project - common - datetime.cpp - Windows - Text - Debug - - - PathRelative - Project - common - datstrm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - db.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dbgrid.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dbtable.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dcbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dircmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dlgcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dndcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dobjcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - docmdi.cpp - Windows - Text - Debug - - - PathRelative - Project - common - docview.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dseldlg.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dynarray.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dynlib.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dynload.cpp - Windows - Text - Debug - - - PathRelative - Project - common - effects.cpp - Windows - Text - Debug - - - PathRelative - Project - common - encconv.cpp - Windows - Text - Debug - - - PathRelative - Project - common - event.cpp - Windows - Text - Debug - - - PathRelative - Project - common - extended.c - Windows - Text - Debug - - - PathRelative - Project - common - fddlgcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - ffile.cpp - Windows - Text - Debug - - - PathRelative - Project - common - file.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fileconf.cpp - Windows - Text - Debug - - - PathRelative - Project - common - filefn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - filename.cpp - Windows - Text - Debug - - - PathRelative - Project - common - filesys.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fontcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fontmap.cpp - Windows - Text - Debug - - - PathRelative - Project - common - framecmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fs_inet.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fs_mem.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fs_zip.cpp - Windows - Text - Debug - - - PathRelative - Project - common - appcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - gaugecmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - gdicmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - geometry.cpp - Windows - Text - Debug - - - PathRelative - Project - common - gifdecod.cpp - Windows - Text - Debug - - - PathRelative - Project - common - hash.cpp - Windows - Text - Debug - - - PathRelative - Project - common - hashmap.cpp - Windows - Text - Debug - - - PathRelative - Project - common - helpbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - http.cpp - Windows - Text - Debug - - - PathRelative - Project - common - iconbndl.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagall.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagbmp.cpp - Windows - Text - Debug - - - PathRelative - Project - common - image.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagfill.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imaggif.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagiff.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagjpeg.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagpcx.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagpng.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagpnm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagtiff.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagxpm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - intl.cpp - Windows - Text - Debug - - - PathRelative - Project - common - ipcbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - layout.cpp - Windows - Text - Debug - - - PathRelative - Project - common - lboxcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - list.cpp - Windows - Text - Debug - - - PathRelative - Project - common - log.cpp - Windows - Text - Debug - - - PathRelative - Project - common - longlong.cpp - Windows - Text - Debug - - - PathRelative - Project - common - matrix.cpp - Windows - Text - Debug - - - PathRelative - Project - common - memory.cpp - Windows - Text - Debug - - - PathRelative - Project - common - menucmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - mimecmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - module.cpp - Windows - Text - Debug - - - PathRelative - Project - common - mstream.cpp - Windows - Text - Debug - - - PathRelative - Project - common - nbkbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - object.cpp - Windows - Text - Debug - - - PathRelative - Project - common - odbc.cpp - Windows - Text - Debug - - - PathRelative - Project - common - paper.cpp - Windows - Text - Debug - - - PathRelative - Project - common - popupcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - prntbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - process.cpp - Windows - Text - Debug - - - PathRelative - Project - common - protocol.cpp - Windows - Text - Debug - - - PathRelative - Project - common - quantize.cpp - Windows - Text - Debug - - - PathRelative - Project - common - radiocmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - regex.cpp - Windows - Text - Debug - - - PathRelative - Project - common - resource.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sckaddr.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sckfile.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sckipc.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sckstrm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sizer.cpp - Windows - Text - Debug - - - PathRelative - Project - common - socket.cpp - Windows - Text - Debug - - - PathRelative - Project - common - statbar.cpp - Windows - Text - Debug - - - PathRelative - Project - common - strconv.cpp - Windows - Text - Debug - - - PathRelative - Project - common - stream.cpp - Windows - Text - Debug - - - PathRelative - Project - common - string.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sysopt.cpp - Windows - Text - Debug - - - PathRelative - Project - common - tbarbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - textbuf.cpp - Windows - Text - Debug - - - PathRelative - Project - common - textcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - textfile.cpp - Windows - Text - Debug - - - PathRelative - Project - common - timercmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - tokenzr.cpp - Windows - Text - Debug - - - PathRelative - Project - common - toplvcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - treebase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - txtstrm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - unzip.c - Windows - Text - Debug - - - PathRelative - Project - common - url.cpp - Windows - Text - Debug - - - PathRelative - Project - common - utilscmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - valgen.cpp - Windows - Text - Debug - - - PathRelative - Project - common - validate.cpp - Windows - Text - Debug - - - PathRelative - Project - common - valtext.cpp - Windows - Text - Debug - - - PathRelative - Project - common - variant.cpp - Windows - Text - Debug - - - PathRelative - Project - common - wfstream.cpp - Windows - Text - Debug - - - PathRelative - Project - common - wincmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - wxchar.cpp - Windows - Text - Debug - - - PathRelative - Project - common - wxexpr.cpp - Windows - Text - Debug - - - PathRelative - Project - common - xpmdecod.cpp - Windows - Text - Debug - - - PathRelative - Project - common - zipstrm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - zstream.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - busyinfo.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - calctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - choicdgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - dcbuffer.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - dcpsg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - dirctrlg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - dragimgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - grid.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - gridctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - gridsel.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - laywin.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - logg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - numdlgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - panelg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - prntdlgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - progdlgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - prop.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - propform.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - proplist.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - sashwin.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - scrlwing.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - spinctlg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - splash.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - splitter.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - statusbr.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - tbarsmpl.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - textdlgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - tipdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - tipwin.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - treectlg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - treelay.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - wizard.cpp - Windows - Text - Debug - - - PathRelative - Project - ..\include - wx_cw_d.pch - Windows - Text - Debug - - - PathRelative - Project - ..\include - wx_cw_d.pch++ - Windows - Text - Debug - - - PathRelative - Project - html - helpctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - html - helpdata.cpp - Windows - Text - Debug - - - PathRelative - Project - html - helpfrm.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmlcell.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmlfilt.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmlpars.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmltag.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmlwin.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmprint.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_dflist.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_fonts.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_hline.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_image.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_layout.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_links.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_list.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_pre.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_style.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_tables.cpp - Windows - Text - Debug - - - PathRelative - Project - html - winpars.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - volume.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - app.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - bitmap.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - bmpbuttn.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - brush.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - button.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - caret.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - checkbox.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - checklst.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - choice.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - clipbrd.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - colordlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - colour.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - combobox.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - control.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - curico.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - cursor.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - data.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dc.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dcclient.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dcmemory.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dcprint.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dcscreen.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dde.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dialog.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dialup.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dib.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dibutils.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dir.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dirdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dragimag.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - enhmeta.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - evtloop.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - fdrepdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - filedlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - font.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - fontdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - fontenum.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - fontutil.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - frame.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - gauge95.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - gdiimage.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - gdiobj.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - glcanvas.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - gsocket.c - Windows - Text - Debug - - - PathRelative - Project - msw - gsockmsw.c - Windows - Text - Debug - - - PathRelative - Project - msw - helpbest.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - helpchm.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - helpwin.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - icon.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - imaglist.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - iniconf.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - joystick.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - listbox.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - listctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - main.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - mdi.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - menu.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - menuitem.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - metafile.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - mimetype.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - minifram.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - msgdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - mslu.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - nativdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - notebook.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ownerdrw.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - palette.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - pen.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - penwin.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - printdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - printwin.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - radiobox.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - radiobut.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - regconf.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - region.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - registry.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - scrolbar.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - settings.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - slider95.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - snglinst.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - spinbutt.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - spinctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - statbmp.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - statbox.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - statbr95.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - statline.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - stattext.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - tabctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - taskbar.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - tbar95.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - textctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - tglbtn.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - thread.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - timer.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - tooltip.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - toplevel.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - treectrl.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - utils.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - utilsexc.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - accel.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - wave.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - window.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\automtn.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\dataobj.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\dropsrc.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\droptgt.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\oleutils.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\uuid.cpp - Windows - Text - Debug - - - RootRelative - Project - ..\lib\jpeg.lib - Windows - Library - Debug, TargetOutputFile - - - RootRelative - Project - ..\lib\png.lib - Windows - Library - Debug, TargetOutputFile - - - RootRelative - Project - ..\lib\tiff.lib - Windows - Library - Debug, TargetOutputFile - - - RootRelative - Project - ..\lib\zlib.lib - Windows - Library - Debug, TargetOutputFile - - - PathRelative - Project - msw - popupwin.cpp - Windows - Text - Debug - - - PathRelative - Project - common - msgout.cpp - Windows - Text - Debug - - - PathRelative - Project - common - settcmn.cpp - Windows - Text - Debug - - - - - PathRelative - Project - ..\include - wx_cw_d.pch - Windows - - - PathRelative - Project - ..\include - wx_cw_d.pch++ - Windows - - - PathRelative - Project - common - ftp.cpp - Windows - - - PathRelative - Project - common - artprov.cpp - Windows - - - PathRelative - Project - common - artstd.cpp - Windows - - - PathRelative - Project - common - choiccmn.cpp - Windows - - - PathRelative - Project - common - clipcmn.cpp - Windows - - - PathRelative - Project - common - clntdata.cpp - Windows - - - PathRelative - Project - common - cmdline.cpp - Windows - - - PathRelative - Project - common - cmdproc.cpp - Windows - - - PathRelative - Project - common - cmndata.cpp - Windows - - - PathRelative - Project - common - config.cpp - Windows - - - PathRelative - Project - common - containr.cpp - Windows - - - PathRelative - Project - common - cshelp.cpp - Windows - - - PathRelative - Project - common - ctrlcmn.cpp - Windows - - - PathRelative - Project - common - ctrlsub.cpp - Windows - - - PathRelative - Project - common - datetime.cpp - Windows - - - PathRelative - Project - common - datstrm.cpp - Windows - - - PathRelative - Project - common - db.cpp - Windows - - - PathRelative - Project - common - dbgrid.cpp - Windows - - - PathRelative - Project - common - dbtable.cpp - Windows - - - PathRelative - Project - common - dcbase.cpp - Windows - - - PathRelative - Project - common - dircmn.cpp - Windows - - - PathRelative - Project - common - dlgcmn.cpp - Windows - - - PathRelative - Project - common - dndcmn.cpp - Windows - - - PathRelative - Project - common - dobjcmn.cpp - Windows - - - PathRelative - Project - common - docmdi.cpp - Windows - - - PathRelative - Project - common - docview.cpp - Windows - - - PathRelative - Project - common - dseldlg.cpp - Windows - - - PathRelative - Project - common - dynarray.cpp - Windows - - - PathRelative - Project - common - dynlib.cpp - Windows - - - PathRelative - Project - common - dynload.cpp - Windows - - - PathRelative - Project - common - effects.cpp - Windows - - - PathRelative - Project - common - encconv.cpp - Windows - - - PathRelative - Project - common - event.cpp - Windows - - - PathRelative - Project - common - extended.c - Windows - - - PathRelative - Project - common - fddlgcmn.cpp - Windows - - - PathRelative - Project - common - ffile.cpp - Windows - - - PathRelative - Project - common - file.cpp - Windows - - - PathRelative - Project - common - fileconf.cpp - Windows - - - PathRelative - Project - common - filefn.cpp - Windows - - - PathRelative - Project - common - filename.cpp - Windows - - - PathRelative - Project - common - filesys.cpp - Windows - - - PathRelative - Project - common - fontcmn.cpp - Windows - - - PathRelative - Project - common - fontmap.cpp - Windows - - - PathRelative - Project - common - framecmn.cpp - Windows - - - PathRelative - Project - common - fs_inet.cpp - Windows - - - PathRelative - Project - common - fs_mem.cpp - Windows - - - PathRelative - Project - common - fs_zip.cpp - Windows - - - PathRelative - Project - common - appcmn.cpp - Windows - - - PathRelative - Project - common - gaugecmn.cpp - Windows - - - PathRelative - Project - common - gdicmn.cpp - Windows - - - PathRelative - Project - common - geometry.cpp - Windows - - - PathRelative - Project - common - gifdecod.cpp - Windows - - - PathRelative - Project - common - hash.cpp - Windows - - - PathRelative - Project - common - hashmap.cpp - Windows - - - PathRelative - Project - common - helpbase.cpp - Windows - - - PathRelative - Project - common - http.cpp - Windows - - - PathRelative - Project - common - iconbndl.cpp - Windows - - - PathRelative - Project - common - imagall.cpp - Windows - - - PathRelative - Project - common - imagbmp.cpp - Windows - - - PathRelative - Project - common - image.cpp - Windows - - - PathRelative - Project - common - imagfill.cpp - Windows - - - PathRelative - Project - common - imaggif.cpp - Windows - - - PathRelative - Project - common - imagiff.cpp - Windows - - - PathRelative - Project - common - imagjpeg.cpp - Windows - - - PathRelative - Project - common - imagpcx.cpp - Windows - - - PathRelative - Project - common - imagpng.cpp - Windows - - - PathRelative - Project - common - imagpnm.cpp - Windows - - - PathRelative - Project - common - imagtiff.cpp - Windows - - - PathRelative - Project - common - imagxpm.cpp - Windows - - - PathRelative - Project - common - intl.cpp - Windows - - - PathRelative - Project - common - ipcbase.cpp - Windows - - - PathRelative - Project - common - layout.cpp - Windows - - - PathRelative - Project - common - lboxcmn.cpp - Windows - - - PathRelative - Project - common - list.cpp - Windows - - - PathRelative - Project - common - log.cpp - Windows - - - PathRelative - Project - common - longlong.cpp - Windows - - - PathRelative - Project - common - matrix.cpp - Windows - - - PathRelative - Project - common - memory.cpp - Windows - - - PathRelative - Project - common - menucmn.cpp - Windows - - - PathRelative - Project - common - mimecmn.cpp - Windows - - - PathRelative - Project - common - module.cpp - Windows - - - PathRelative - Project - common - mstream.cpp - Windows - - - PathRelative - Project - common - nbkbase.cpp - Windows - - - PathRelative - Project - common - object.cpp - Windows - - - PathRelative - Project - common - odbc.cpp - Windows - - - PathRelative - Project - common - paper.cpp - Windows - - - PathRelative - Project - common - popupcmn.cpp - Windows - - - PathRelative - Project - common - prntbase.cpp - Windows - - - PathRelative - Project - common - process.cpp - Windows - - - PathRelative - Project - common - protocol.cpp - Windows - - - PathRelative - Project - common - quantize.cpp - Windows - - - PathRelative - Project - common - radiocmn.cpp - Windows - - - PathRelative - Project - common - regex.cpp - Windows - - - PathRelative - Project - common - resource.cpp - Windows - - - PathRelative - Project - common - sckaddr.cpp - Windows - - - PathRelative - Project - common - sckfile.cpp - Windows - - - PathRelative - Project - common - sckipc.cpp - Windows - - - PathRelative - Project - common - sckstrm.cpp - Windows - - - PathRelative - Project - common - settcmn.cpp - Windows - - - PathRelative - Project - common - sizer.cpp - Windows - - - PathRelative - Project - common - socket.cpp - Windows - - - PathRelative - Project - common - statbar.cpp - Windows - - - PathRelative - Project - common - strconv.cpp - Windows - - - PathRelative - Project - common - stream.cpp - Windows - - - PathRelative - Project - common - string.cpp - Windows - - - PathRelative - Project - common - sysopt.cpp - Windows - - - PathRelative - Project - common - tbarbase.cpp - Windows - - - PathRelative - Project - common - textbuf.cpp - Windows - - - PathRelative - Project - common - textcmn.cpp - Windows - - - PathRelative - Project - common - textfile.cpp - Windows - - - PathRelative - Project - common - timercmn.cpp - Windows - - - PathRelative - Project - common - tokenzr.cpp - Windows - - - PathRelative - Project - common - toplvcmn.cpp - Windows - - - PathRelative - Project - common - treebase.cpp - Windows - - - PathRelative - Project - common - txtstrm.cpp - Windows - - - PathRelative - Project - common - unzip.c - Windows - - - PathRelative - Project - common - url.cpp - Windows - - - PathRelative - Project - common - utilscmn.cpp - Windows - - - PathRelative - Project - common - valgen.cpp - Windows - - - PathRelative - Project - common - validate.cpp - Windows - - - PathRelative - Project - common - valtext.cpp - Windows - - - PathRelative - Project - common - variant.cpp - Windows - - - PathRelative - Project - common - wfstream.cpp - Windows - - - PathRelative - Project - common - wincmn.cpp - Windows - - - PathRelative - Project - common - wxchar.cpp - Windows - - - PathRelative - Project - common - wxexpr.cpp - Windows - - - PathRelative - Project - common - xpmdecod.cpp - Windows - - - PathRelative - Project - common - zipstrm.cpp - Windows - - - PathRelative - Project - common - zstream.cpp - Windows - - - PathRelative - Project - generic - busyinfo.cpp - Windows - - - PathRelative - Project - generic - calctrl.cpp - Windows - - - PathRelative - Project - generic - choicdgg.cpp - Windows - - - PathRelative - Project - generic - dcbuffer.cpp - Windows - - - PathRelative - Project - generic - dcpsg.cpp - Windows - - - PathRelative - Project - generic - dirctrlg.cpp - Windows - - - PathRelative - Project - generic - dragimgg.cpp - Windows - - - PathRelative - Project - generic - grid.cpp - Windows - - - PathRelative - Project - generic - gridctrl.cpp - Windows - - - PathRelative - Project - generic - gridsel.cpp - Windows - - - PathRelative - Project - generic - laywin.cpp - Windows - - - PathRelative - Project - generic - logg.cpp - Windows - - - PathRelative - Project - generic - numdlgg.cpp - Windows - - - PathRelative - Project - generic - panelg.cpp - Windows - - - PathRelative - Project - generic - prntdlgg.cpp - Windows - - - PathRelative - Project - generic - progdlgg.cpp - Windows - - - PathRelative - Project - generic - prop.cpp - Windows - - - PathRelative - Project - generic - propform.cpp - Windows - - - PathRelative - Project - generic - proplist.cpp - Windows - - - PathRelative - Project - generic - sashwin.cpp - Windows - - - PathRelative - Project - generic - scrlwing.cpp - Windows - - - PathRelative - Project - generic - spinctlg.cpp - Windows - - - PathRelative - Project - generic - splash.cpp - Windows - - - PathRelative - Project - generic - splitter.cpp - Windows - - - PathRelative - Project - generic - statusbr.cpp - Windows - - - PathRelative - Project - generic - tbarsmpl.cpp - Windows - - - PathRelative - Project - generic - textdlgg.cpp - Windows - - - PathRelative - Project - generic - tipdlg.cpp - Windows - - - PathRelative - Project - generic - tipwin.cpp - Windows - - - PathRelative - Project - generic - treectlg.cpp - Windows - - - PathRelative - Project - generic - treelay.cpp - Windows - - - PathRelative - Project - generic - wizard.cpp - Windows - - - PathRelative - Project - html - helpctrl.cpp - Windows - - - PathRelative - Project - html - helpdata.cpp - Windows - - - PathRelative - Project - html - helpfrm.cpp - Windows - - - PathRelative - Project - html - htmlcell.cpp - Windows - - - PathRelative - Project - html - htmlfilt.cpp - Windows - - - PathRelative - Project - html - htmlpars.cpp - Windows - - - PathRelative - Project - html - htmltag.cpp - Windows - - - PathRelative - Project - html - htmlwin.cpp - Windows - - - PathRelative - Project - html - htmprint.cpp - Windows - - - PathRelative - Project - html - m_dflist.cpp - Windows - - - PathRelative - Project - html - m_fonts.cpp - Windows - - - PathRelative - Project - html - m_hline.cpp - Windows - - - PathRelative - Project - html - m_image.cpp - Windows - - - PathRelative - Project - html - m_layout.cpp - Windows - - - PathRelative - Project - html - m_links.cpp - Windows - - - PathRelative - Project - html - m_list.cpp - Windows - - - PathRelative - Project - html - m_pre.cpp - Windows - - - PathRelative - Project - html - m_style.cpp - Windows - - - PathRelative - Project - html - m_tables.cpp - Windows - - - PathRelative - Project - html - winpars.cpp - Windows - - - PathRelative - Project - msw - volume.cpp - Windows - - - PathRelative - Project - msw - app.cpp - Windows - - - PathRelative - Project - msw - bitmap.cpp - Windows - - - PathRelative - Project - msw - bmpbuttn.cpp - Windows - - - PathRelative - Project - msw - brush.cpp - Windows - - - PathRelative - Project - msw - button.cpp - Windows - - - PathRelative - Project - msw - caret.cpp - Windows - - - PathRelative - Project - msw - checkbox.cpp - Windows - - - PathRelative - Project - msw - checklst.cpp - Windows - - - PathRelative - Project - msw - choice.cpp - Windows - - - PathRelative - Project - msw - clipbrd.cpp - Windows - - - PathRelative - Project - msw - colordlg.cpp - Windows - - - PathRelative - Project - msw - colour.cpp - Windows - - - PathRelative - Project - msw - combobox.cpp - Windows - - - PathRelative - Project - msw - control.cpp - Windows - - - PathRelative - Project - msw - curico.cpp - Windows - - - PathRelative - Project - msw - cursor.cpp - Windows - - - PathRelative - Project - msw - data.cpp - Windows - - - PathRelative - Project - msw - dc.cpp - Windows - - - PathRelative - Project - msw - dcclient.cpp - Windows - - - PathRelative - Project - msw - dcmemory.cpp - Windows - - - PathRelative - Project - msw - dcprint.cpp - Windows - - - PathRelative - Project - msw - dcscreen.cpp - Windows - - - PathRelative - Project - msw - dde.cpp - Windows - - - PathRelative - Project - msw - dialog.cpp - Windows - - - PathRelative - Project - msw - dialup.cpp - Windows - - - PathRelative - Project - msw - dib.cpp - Windows - - - PathRelative - Project - msw - dibutils.cpp - Windows - - - PathRelative - Project - msw - dir.cpp - Windows - - - PathRelative - Project - msw - dirdlg.cpp - Windows - - - PathRelative - Project - msw - dragimag.cpp - Windows - - - PathRelative - Project - msw - enhmeta.cpp - Windows - - - PathRelative - Project - msw - evtloop.cpp - Windows - - - PathRelative - Project - msw - fdrepdlg.cpp - Windows - - - PathRelative - Project - msw - filedlg.cpp - Windows - - - PathRelative - Project - msw - font.cpp - Windows - - - PathRelative - Project - msw - fontdlg.cpp - Windows - - - PathRelative - Project - msw - fontenum.cpp - Windows - - - PathRelative - Project - msw - fontutil.cpp - Windows - - - PathRelative - Project - msw - frame.cpp - Windows - - - PathRelative - Project - msw - gauge95.cpp - Windows - - - PathRelative - Project - msw - gdiimage.cpp - Windows - - - PathRelative - Project - msw - gdiobj.cpp - Windows - - - PathRelative - Project - msw - glcanvas.cpp - Windows - - - PathRelative - Project - msw - gsocket.c - Windows - - - PathRelative - Project - msw - gsockmsw.c - Windows - - - PathRelative - Project - msw - helpbest.cpp - Windows - - - PathRelative - Project - msw - helpchm.cpp - Windows - - - PathRelative - Project - msw - helpwin.cpp - Windows - - - PathRelative - Project - msw - icon.cpp - Windows - - - PathRelative - Project - msw - imaglist.cpp - Windows - - - PathRelative - Project - msw - iniconf.cpp - Windows - - - PathRelative - Project - msw - joystick.cpp - Windows - - - PathRelative - Project - msw - listbox.cpp - Windows - - - PathRelative - Project - msw - listctrl.cpp - Windows - - - PathRelative - Project - msw - main.cpp - Windows - - - PathRelative - Project - msw - mdi.cpp - Windows - - - PathRelative - Project - msw - menu.cpp - Windows - - - PathRelative - Project - msw - menuitem.cpp - Windows - - - PathRelative - Project - msw - metafile.cpp - Windows - - - PathRelative - Project - msw - mimetype.cpp - Windows - - - PathRelative - Project - msw - minifram.cpp - Windows - - - PathRelative - Project - msw - msgdlg.cpp - Windows - - - PathRelative - Project - msw - mslu.cpp - Windows - - - PathRelative - Project - msw - nativdlg.cpp - Windows - - - PathRelative - Project - msw - notebook.cpp - Windows - - - PathRelative - Project - msw - ownerdrw.cpp - Windows - - - PathRelative - Project - msw - palette.cpp - Windows - - - PathRelative - Project - msw - pen.cpp - Windows - - - PathRelative - Project - msw - penwin.cpp - Windows - - - PathRelative - Project - msw - printdlg.cpp - Windows - - - PathRelative - Project - msw - printwin.cpp - Windows - - - PathRelative - Project - msw - radiobox.cpp - Windows - - - PathRelative - Project - msw - radiobut.cpp - Windows - - - PathRelative - Project - msw - regconf.cpp - Windows - - - PathRelative - Project - msw - region.cpp - Windows - - - PathRelative - Project - msw - registry.cpp - Windows - - - PathRelative - Project - msw - scrolbar.cpp - Windows - - - PathRelative - Project - msw - settings.cpp - Windows - - - PathRelative - Project - msw - slider95.cpp - Windows - - - PathRelative - Project - msw - snglinst.cpp - Windows - - - PathRelative - Project - msw - spinbutt.cpp - Windows - - - PathRelative - Project - msw - spinctrl.cpp - Windows - - - PathRelative - Project - msw - statbmp.cpp - Windows - - - PathRelative - Project - msw - statbox.cpp - Windows - - - PathRelative - Project - msw - statbr95.cpp - Windows - - - PathRelative - Project - msw - statline.cpp - Windows - - - PathRelative - Project - msw - stattext.cpp - Windows - - - PathRelative - Project - msw - tabctrl.cpp - Windows - - - PathRelative - Project - msw - taskbar.cpp - Windows - - - PathRelative - Project - msw - tbar95.cpp - Windows - - - PathRelative - Project - msw - textctrl.cpp - Windows - - - PathRelative - Project - msw - tglbtn.cpp - Windows - - - PathRelative - Project - msw - thread.cpp - Windows - - - PathRelative - Project - msw - timer.cpp - Windows - - - PathRelative - Project - msw - tooltip.cpp - Windows - - - PathRelative - Project - msw - toplevel.cpp - Windows - - - PathRelative - Project - msw - treectrl.cpp - Windows - - - PathRelative - Project - msw - utils.cpp - Windows - - - PathRelative - Project - msw - utilsexc.cpp - Windows - - - PathRelative - Project - msw - accel.cpp - Windows - - - PathRelative - Project - msw - wave.cpp - Windows - - - PathRelative - Project - msw - window.cpp - Windows - - - PathRelative - Project - msw - ole\automtn.cpp - Windows - - - PathRelative - Project - msw - ole\dataobj.cpp - Windows - - - PathRelative - Project - msw - ole\dropsrc.cpp - Windows - - - PathRelative - Project - msw - ole\droptgt.cpp - Windows - - - PathRelative - Project - msw - ole\oleutils.cpp - Windows - - - PathRelative - Project - msw - ole\uuid.cpp - Windows - - - PathRelative - Project - msw - popupwin.cpp - Windows - - - PathRelative - Project - common - msgout.cpp - Windows - - - RootRelative - Project - ..\lib\zlib.lib - Windows - - - RootRelative - Project - ..\lib\tiff.lib - Windows - - - RootRelative - Project - ..\lib\png.lib - Windows - - - RootRelative - Project - ..\lib\jpeg.lib - Windows - - - - - copySetupDebug - - - jpeg - LinkAgainst - - RootRelative - Project - ..\lib\jpeg.lib - Windows - - - - png - LinkAgainst - - RootRelative - Project - ..\lib\png.lib - Windows - - - - tiff - LinkAgainst - - RootRelative - Project - ..\lib\tiff.lib - Windows - - - - zlib - LinkAgainst - - RootRelative - Project - ..\lib\zlib.lib - Windows - - - - - - jpeg - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path..\lib\cw7msw\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path..\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMSL - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathWin32-x86 Support - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerWin32 x86 Linker - PreLinker - PostLinker - Targetnamejpeg - OutputDirectory - Path..\lib - PathFormatWindows - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.def - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.ord - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pl - CompilerMW Perl - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.rc - CompilerMW WinRC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiLIB - FileExtension - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiOBJ - FileExtension - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.a - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.o - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.obj - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.res - CompilerWinRes Import - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLstrue - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - Perl_Prefix_Filename - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata1 - MWCodeGen_PPC_vrsave1 - - - MWCodeGen_X86_processorPentiumII - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo0 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosetrue - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnamejpeg_CW_Prefix.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0 - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion0 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut25 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames0 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1463898714 - MWJava_Proj_HTMLAppName - MWJava_Proj_PathVersion0 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32Name - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - MWJava_Proj_useJCVM1 - MWJava_Proj_aidData - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV0 - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DGLX - ckid - Proj - WSPC - mcvs - - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeLPPA - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWProject_X86_typeLibrary - MWProject_X86_outfilejpeg.lib - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - Resource Flattener Panel - 0100000000000000000000000000000000000000000000000000000000000000 - 0000074F75742E62696E00000000000000000000000000000000000000000000 - 0000 - - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWWinRC_prefixname - - - GlobalOptimizer_X86__optimizationlevelLevel4 - GlobalOptimizer_X86__optforSpeed - - - - PathRelative - Project - - jpeg\jdphuff.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcapistd.c - Windows - Text - - - - PathRelative - Project - - jpeg\jccoefct.c - Windows - Text - - - - PathRelative - Project - - jpeg\jccolor.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcdctmgr.c - Windows - Text - - - - PathRelative - Project - - jpeg\jchuff.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcinit.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcmainct.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcmarker.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcmaster.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcomapi.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcparam.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcphuff.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcprepct.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcsample.c - Windows - Text - - - - PathRelative - Project - - jpeg\jctrans.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdapimin.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdapistd.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdatadst.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdatasrc.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdcoefct.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdcolor.c - Windows - Text - - - - PathRelative - Project - - jpeg\jddctmgr.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdhuff.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdinput.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdmainct.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdmarker.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdmaster.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdmerge.c - Windows - Text - - - - PathRelative - Project - - jpeg\jcapimin.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdpostct.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdsample.c - Windows - Text - - - - PathRelative - Project - - jpeg\jdtrans.c - Windows - Text - - - - PathRelative - Project - - jpeg\jerror.c - Windows - Text - - - - PathRelative - Project - - jpeg\jfdctflt.c - Windows - Text - - - - PathRelative - Project - - jpeg\jfdctfst.c - Windows - Text - - - - PathRelative - Project - - jpeg\jfdctint.c - Windows - Text - - - - PathRelative - Project - - jpeg\jidctflt.c - Windows - Text - - - - PathRelative - Project - - jpeg\jidctfst.c - Windows - Text - - - - PathRelative - Project - - jpeg\jidctint.c - Windows - Text - - - - PathRelative - Project - - jpeg\jidctred.c - Windows - Text - - - - PathRelative - Project - - jpeg\jmemansi.c - Windows - Text - - - - PathRelative - Project - - jpeg\jmemmgr.c - Windows - Text - - - - PathRelative - Project - - jpeg\jquant1.c - Windows - Text - - - - PathRelative - Project - - jpeg\jquant2.c - Windows - Text - - - - PathRelative - Project - - jpeg\jutils.c - Windows - Text - - - - - - PathRelative - Project - - jpeg\jdphuff.c - Windows - - - PathRelative - Project - - jpeg\jcapistd.c - Windows - - - PathRelative - Project - - jpeg\jccoefct.c - Windows - - - PathRelative - Project - - jpeg\jccolor.c - Windows - - - PathRelative - Project - - jpeg\jcdctmgr.c - Windows - - - PathRelative - Project - - jpeg\jchuff.c - Windows - - - PathRelative - Project - - jpeg\jcinit.c - Windows - - - PathRelative - Project - - jpeg\jcmainct.c - Windows - - - PathRelative - Project - - jpeg\jcmarker.c - Windows - - - PathRelative - Project - - jpeg\jcmaster.c - Windows - - - PathRelative - Project - - jpeg\jcomapi.c - Windows - - - PathRelative - Project - - jpeg\jcparam.c - Windows - - - PathRelative - Project - - jpeg\jcphuff.c - Windows - - - PathRelative - Project - - jpeg\jcprepct.c - Windows - - - PathRelative - Project - - jpeg\jcsample.c - Windows - - - PathRelative - Project - - jpeg\jctrans.c - Windows - - - PathRelative - Project - - jpeg\jdapimin.c - Windows - - - PathRelative - Project - - jpeg\jdapistd.c - Windows - - - PathRelative - Project - - jpeg\jdatadst.c - Windows - - - PathRelative - Project - - jpeg\jdatasrc.c - Windows - - - PathRelative - Project - - jpeg\jdcoefct.c - Windows - - - PathRelative - Project - - jpeg\jdcolor.c - Windows - - - PathRelative - Project - - jpeg\jddctmgr.c - Windows - - - PathRelative - Project - - jpeg\jdhuff.c - Windows - - - PathRelative - Project - - jpeg\jdinput.c - Windows - - - PathRelative - Project - - jpeg\jdmainct.c - Windows - - - PathRelative - Project - - jpeg\jdmarker.c - Windows - - - PathRelative - Project - - jpeg\jdmaster.c - Windows - - - PathRelative - Project - - jpeg\jdmerge.c - Windows - - - PathRelative - Project - - jpeg\jcapimin.c - Windows - - - PathRelative - Project - - jpeg\jdpostct.c - Windows - - - PathRelative - Project - - jpeg\jdsample.c - Windows - - - PathRelative - Project - - jpeg\jdtrans.c - Windows - - - PathRelative - Project - - jpeg\jerror.c - Windows - - - PathRelative - Project - - jpeg\jfdctflt.c - Windows - - - PathRelative - Project - - jpeg\jfdctfst.c - Windows - - - PathRelative - Project - - jpeg\jfdctint.c - Windows - - - PathRelative - Project - - jpeg\jidctflt.c - Windows - - - PathRelative - Project - - jpeg\jidctfst.c - Windows - - - PathRelative - Project - - jpeg\jidctint.c - Windows - - - PathRelative - Project - - jpeg\jidctred.c - Windows - - - PathRelative - Project - - jpeg\jmemansi.c - Windows - - - PathRelative - Project - - jpeg\jmemmgr.c - Windows - - - PathRelative - Project - - jpeg\jquant1.c - Windows - - - PathRelative - Project - - jpeg\jquant2.c - Windows - - - PathRelative - Project - - jpeg\jutils.c - Windows - - - - - copySetupRelease - - - - - png - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path..\lib\cw7msw\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path..\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMSL - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathWin32-x86 Support - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerWin32 x86 Linker - PreLinker - PostLinker - Targetnamepng - OutputDirectory - Path..\lib - PathFormatWindows - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.def - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.ord - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pl - CompilerMW Perl - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.rc - CompilerMW WinRC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiLIB - FileExtension - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiOBJ - FileExtension - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.a - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.o - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.obj - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.res - CompilerWinRes Import - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLstrue - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - Perl_Prefix_Filename - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata1 - MWCodeGen_PPC_vrsave1 - - - MWCodeGen_X86_processorPentiumII - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo0 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosetrue - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixname - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0 - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion0 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut25 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames0 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1463898714 - MWJava_Proj_HTMLAppName - MWJava_Proj_PathVersion0 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32Name - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - MWJava_Proj_useJCVM1 - MWJava_Proj_aidData - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV0 - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DGLX - ckid - Proj - WSPC - mcvs - - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeLPPA - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWProject_X86_typeLibrary - MWProject_X86_outfilepng.lib - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - Resource Flattener Panel - 0100000000000000000000000000000000000000000000000000000000000000 - 0000074F75742E62696E00000000000000000000000000000000000000000000 - 0000 - - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWWinRC_prefixname - - - GlobalOptimizer_X86__optimizationlevelLevel4 - GlobalOptimizer_X86__optforSpeed - - - - PathRelative - Project - - png\pngtrans.c - Windows - Text - - - - PathRelative - Project - - png\pngerror.c - Windows - Text - - - - PathRelative - Project - - png\pngget.c - Windows - Text - - - - PathRelative - Project - - png\pngmem.c - Windows - Text - - - - PathRelative - Project - - png\pngpread.c - Windows - Text - - - - PathRelative - Project - - png\pngread.c - Windows - Text - - - - PathRelative - Project - - png\pngrio.c - Windows - Text - - - - PathRelative - Project - - png\pngrtran.c - Windows - Text - - - - PathRelative - Project - - png\pngrutil.c - Windows - Text - - - - PathRelative - Project - - png\pngset.c - Windows - Text - - - - PathRelative - Project - - png\png.c - Windows - Text - - - - PathRelative - Project - - png\pngwio.c - Windows - Text - - - - PathRelative - Project - - png\pngwrite.c - Windows - Text - - - - PathRelative - Project - - png\pngwtran.c - Windows - Text - - - - PathRelative - Project - - png\pngwutil.c - Windows - Text - - - - - - PathRelative - Project - - png\pngtrans.c - Windows - - - PathRelative - Project - - png\pngerror.c - Windows - - - PathRelative - Project - - png\pngget.c - Windows - - - PathRelative - Project - - png\pngmem.c - Windows - - - PathRelative - Project - - png\pngpread.c - Windows - - - PathRelative - Project - - png\pngread.c - Windows - - - PathRelative - Project - - png\pngrio.c - Windows - - - PathRelative - Project - - png\pngrtran.c - Windows - - - PathRelative - Project - - png\pngrutil.c - Windows - - - PathRelative - Project - - png\pngset.c - Windows - - - PathRelative - Project - - png\png.c - Windows - - - PathRelative - Project - - png\pngwio.c - Windows - - - PathRelative - Project - - png\pngwrite.c - Windows - - - PathRelative - Project - - png\pngwtran.c - Windows - - - PathRelative - Project - - png\pngwutil.c - Windows - - - - - copySetupRelease - - - - - tiff - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path..\lib\cw7msw\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path..\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMSL - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathWin32-x86 Support - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerWin32 x86 Linker - PreLinker - PostLinker - Targetnametiff - OutputDirectory - Path..\lib - PathFormatWindows - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.def - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.ord - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pl - CompilerMW Perl - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.rc - CompilerMW WinRC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiLIB - FileExtension - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiOBJ - FileExtension - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.a - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.o - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.obj - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.res - CompilerWinRes Import - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLstrue - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - Perl_Prefix_Filename - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata1 - MWCodeGen_PPC_vrsave1 - - - MWCodeGen_X86_processorPentiumII - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo0 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosetrue - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixnametiff_CW_Prefix.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0 - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion0 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut25 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames0 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1463898714 - MWJava_Proj_HTMLAppName - MWJava_Proj_PathVersion0 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32Name - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - MWJava_Proj_useJCVM1 - MWJava_Proj_aidData - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV0 - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DGLX - ckid - Proj - WSPC - mcvs - - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeLPPA - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWProject_X86_typeLibrary - MWProject_X86_outfiletiff.lib - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - Resource Flattener Panel - 0100000000000000000000000000000000000000000000000000000000000000 - 0000074F75742E62696E00000000000000000000000000000000000000000000 - 0000 - - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWWinRC_prefixname - - - GlobalOptimizer_X86__optimizationlevelLevel4 - GlobalOptimizer_X86__optforSpeed - - - - PathRelative - Project - - tiff\tif_next.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_close.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_codec.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_compress.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_dir.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_dirinfo.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_dirread.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_dirwrite.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_dumpmode.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_error.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_fax3.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_fax3sm.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_flush.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_getimage.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_jpeg.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_luv.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_lzw.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_aux.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_open.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_packbits.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_pixarlog.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_predict.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_print.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_read.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_strip.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_swab.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_thunder.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_tile.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_version.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_warning.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_win32.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_write.c - Windows - Text - - - - PathRelative - Project - - tiff\tif_zip.c - Windows - Text - - - - - - PathRelative - Project - - tiff\tif_next.c - Windows - - - PathRelative - Project - - tiff\tif_close.c - Windows - - - PathRelative - Project - - tiff\tif_codec.c - Windows - - - PathRelative - Project - - tiff\tif_compress.c - Windows - - - PathRelative - Project - - tiff\tif_dir.c - Windows - - - PathRelative - Project - - tiff\tif_dirinfo.c - Windows - - - PathRelative - Project - - tiff\tif_dirread.c - Windows - - - PathRelative - Project - - tiff\tif_dirwrite.c - Windows - - - PathRelative - Project - - tiff\tif_dumpmode.c - Windows - - - PathRelative - Project - - tiff\tif_error.c - Windows - - - PathRelative - Project - - tiff\tif_fax3.c - Windows - - - PathRelative - Project - - tiff\tif_fax3sm.c - Windows - - - PathRelative - Project - - tiff\tif_flush.c - Windows - - - PathRelative - Project - - tiff\tif_getimage.c - Windows - - - PathRelative - Project - - tiff\tif_jpeg.c - Windows - - - PathRelative - Project - - tiff\tif_luv.c - Windows - - - PathRelative - Project - - tiff\tif_lzw.c - Windows - - - PathRelative - Project - - tiff\tif_aux.c - Windows - - - PathRelative - Project - - tiff\tif_open.c - Windows - - - PathRelative - Project - - tiff\tif_packbits.c - Windows - - - PathRelative - Project - - tiff\tif_pixarlog.c - Windows - - - PathRelative - Project - - tiff\tif_predict.c - Windows - - - PathRelative - Project - - tiff\tif_print.c - Windows - - - PathRelative - Project - - tiff\tif_read.c - Windows - - - PathRelative - Project - - tiff\tif_strip.c - Windows - - - PathRelative - Project - - tiff\tif_swab.c - Windows - - - PathRelative - Project - - tiff\tif_thunder.c - Windows - - - PathRelative - Project - - tiff\tif_tile.c - Windows - - - PathRelative - Project - - tiff\tif_version.c - Windows - - - PathRelative - Project - - tiff\tif_warning.c - Windows - - - PathRelative - Project - - tiff\tif_win32.c - Windows - - - PathRelative - Project - - tiff\tif_write.c - Windows - - - PathRelative - Project - - tiff\tif_zip.c - Windows - - - - - copySetupRelease - - - - - zlib - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path..\lib\cw7msw\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path..\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMSL - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathWin32-x86 Support - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerWin32 x86 Linker - PreLinker - PostLinker - Targetnamezlib - OutputDirectory - Path..\lib - PathFormatWindows - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.def - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.ord - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pl - CompilerMW Perl - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.rc - CompilerMW WinRC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiLIB - FileExtension - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiOBJ - FileExtension - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.a - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.o - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.obj - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.res - CompilerWinRes Import - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLstrue - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - Perl_Prefix_Filename - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata1 - MWCodeGen_PPC_vrsave1 - - - MWCodeGen_X86_processorPentiumII - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo0 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosetrue - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixname - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen1 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0 - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion0 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut25 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames0 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1463898714 - MWJava_Proj_HTMLAppName - MWJava_Proj_PathVersion0 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32Name - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - MWJava_Proj_useJCVM1 - MWJava_Proj_aidData - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV0 - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DGLX - ckid - Proj - WSPC - mcvs - - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeLPPA - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWProject_X86_typeLibrary - MWProject_X86_outfilezlib.lib - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - Resource Flattener Panel - 0100000000000000000000000000000000000000000000000000000000000000 - 0000074F75742E62696E00000000000000000000000000000000000000000000 - 0000 - - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWWinRC_prefixname - - - GlobalOptimizer_X86__optimizationlevelLevel4 - GlobalOptimizer_X86__optforSpeed - - - - PathRelative - Project - - zlib\compress.c - Windows - Text - - - - PathRelative - Project - - zlib\crc32.c - Windows - Text - - - - PathRelative - Project - - zlib\gzio.c - Windows - Text - - - - PathRelative - Project - - zlib\infblock.c - Windows - Text - - - - PathRelative - Project - - zlib\infcodes.c - Windows - Text - - - - PathRelative - Project - - zlib\inffast.c - Windows - Text - - - - PathRelative - Project - - zlib\inflate.c - Windows - Text - - - - PathRelative - Project - - zlib\inftrees.c - Windows - Text - - - - PathRelative - Project - - zlib\infutil.c - Windows - Text - - - - PathRelative - Project - - zlib\adler32.c - Windows - Text - - - - PathRelative - Project - - zlib\trees.c - Windows - Text - - - - PathRelative - Project - - zlib\uncompr.c - Windows - Text - - - - PathRelative - Project - - zlib\zutil.c - Windows - Text - - - - PathRelative - Project - - zlib\deflate.c - Windows - Text - - - - - - PathRelative - Project - - zlib\compress.c - Windows - - - PathRelative - Project - - zlib\crc32.c - Windows - - - PathRelative - Project - - zlib\gzio.c - Windows - - - PathRelative - Project - - zlib\infblock.c - Windows - - - PathRelative - Project - - zlib\infcodes.c - Windows - - - PathRelative - Project - - zlib\inffast.c - Windows - - - PathRelative - Project - - zlib\inflate.c - Windows - - - PathRelative - Project - - zlib\inftrees.c - Windows - - - PathRelative - Project - - zlib\infutil.c - Windows - - - PathRelative - Project - - zlib\adler32.c - Windows - - - PathRelative - Project - - zlib\trees.c - Windows - - - PathRelative - Project - - zlib\uncompr.c - Windows - - - PathRelative - Project - - zlib\zutil.c - Windows - - - PathRelative - Project - - zlib\deflate.c - Windows - - - - - copySetupRelease - - - - - wxlib Win32 release - - - - UserSourceTrees - - - AlwaysSearchUserPathstrue - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path..\lib\cw7msw\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Path..\include - PathFormatWindows - PathRootProject - - Recursivefalse - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathgeneric - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathmsw - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathcommon - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathzlib - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathpng - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathjpeg - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathtiff - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathhtml - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - Pathregex - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - PathMSL - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SearchPath - PathWin32-x86 Support - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerWin32 x86 Linker - PreLinker - PostLinker - Targetnamewxlib Win32 release - OutputDirectory - Path..\lib - PathFormatWindows - PathRootProject - - SaveEntriesUsingRelativePathstrue - - - FileMappings - - FileTypeTEXT - FileExtension.c - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.c++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cc - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.cpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.def - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.h - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.h++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.hpp - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMaketrue - - - FileTypeTEXT - FileExtension.ord - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pch++ - CompilerMW C/C++ x86 - EditLanguageC/C++ - Precompiletrue - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pl - CompilerMW Perl - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.rc - CompilerMW WinRC - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiLIB - FileExtension - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeiOBJ - FileExtension - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.a - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.doc - Compiler - EditLanguage - Precompilefalse - Launchabletrue - ResourceFilefalse - IgnoredByMaketrue - - - FileExtension.lib - CompilerLib Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.o - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.obj - CompilerObj Import x86 - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileExtension.res - CompilerWinRes Import - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLstrue - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - Perl_Prefix_Filename - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata1 - MWCodeGen_PPC_vrsave1 - - - MWCodeGen_X86_processorPentiumII - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo0 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosetrue - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle1 - MWFrontEnd_C_prefixname/wx/wx_cw.h - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel8 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0 - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion0 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut25 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames0 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1463898714 - MWJava_Proj_HTMLAppName - MWJava_Proj_PathVersion0 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32Name - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - MWJava_Proj_useJCVM1 - MWJava_Proj_aidData - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV0 - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DGLX - ckid - Proj - WSPC - mcvs - - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeLPPA - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWProject_X86_typeLibrary - MWProject_X86_outfilewx_x86.lib - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - Resource Flattener Panel - 0100000000000000000000000000000000000000000000000000000000000000 - 0000074F75742E62696E00000000000000000000000000000000000000000000 - 0000 - - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWWinRC_prefixname - - - GlobalOptimizer_X86__optimizationlevelLevel4 - GlobalOptimizer_X86__optforSpeed - - - - PathRelative - Project - common - ftp.cpp - Windows - Text - Debug - - - PathRelative - Project - common - artprov.cpp - Windows - Text - Debug - - - PathRelative - Project - common - artstd.cpp - Windows - Text - Debug - - - PathRelative - Project - common - choiccmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - clipcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - clntdata.cpp - Windows - Text - Debug - - - PathRelative - Project - common - cmdline.cpp - Windows - Text - Debug - - - PathRelative - Project - common - cmdproc.cpp - Windows - Text - Debug - - - PathRelative - Project - common - cmndata.cpp - Windows - Text - Debug - - - PathRelative - Project - common - config.cpp - Windows - Text - Debug - - - PathRelative - Project - common - containr.cpp - Windows - Text - Debug - - - PathRelative - Project - common - cshelp.cpp - Windows - Text - Debug - - - PathRelative - Project - common - ctrlcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - ctrlsub.cpp - Windows - Text - Debug - - - PathRelative - Project - common - datetime.cpp - Windows - Text - Debug - - - PathRelative - Project - common - datstrm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - db.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dbgrid.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dbtable.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dcbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dircmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dlgcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dndcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dobjcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - docmdi.cpp - Windows - Text - Debug - - - PathRelative - Project - common - docview.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dseldlg.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dynarray.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dynlib.cpp - Windows - Text - Debug - - - PathRelative - Project - common - dynload.cpp - Windows - Text - Debug - - - PathRelative - Project - common - effects.cpp - Windows - Text - Debug - - - PathRelative - Project - common - encconv.cpp - Windows - Text - Debug - - - PathRelative - Project - common - event.cpp - Windows - Text - Debug - - - PathRelative - Project - common - extended.c - Windows - Text - Debug - - - PathRelative - Project - common - fddlgcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - ffile.cpp - Windows - Text - Debug - - - PathRelative - Project - common - file.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fileconf.cpp - Windows - Text - Debug - - - PathRelative - Project - common - filefn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - filename.cpp - Windows - Text - Debug - - - PathRelative - Project - common - filesys.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fontcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fontmap.cpp - Windows - Text - Debug - - - PathRelative - Project - common - framecmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fs_inet.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fs_mem.cpp - Windows - Text - Debug - - - PathRelative - Project - common - fs_zip.cpp - Windows - Text - Debug - - - PathRelative - Project - common - appcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - gaugecmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - gdicmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - geometry.cpp - Windows - Text - Debug - - - PathRelative - Project - common - gifdecod.cpp - Windows - Text - Debug - - - PathRelative - Project - common - hash.cpp - Windows - Text - Debug - - - PathRelative - Project - common - hashmap.cpp - Windows - Text - Debug - - - PathRelative - Project - common - helpbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - http.cpp - Windows - Text - Debug - - - PathRelative - Project - common - iconbndl.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagall.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagbmp.cpp - Windows - Text - Debug - - - PathRelative - Project - common - image.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagfill.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imaggif.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagiff.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagjpeg.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagpcx.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagpng.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagpnm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagtiff.cpp - Windows - Text - Debug - - - PathRelative - Project - common - imagxpm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - intl.cpp - Windows - Text - Debug - - - PathRelative - Project - common - ipcbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - layout.cpp - Windows - Text - Debug - - - PathRelative - Project - common - lboxcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - list.cpp - Windows - Text - Debug - - - PathRelative - Project - common - log.cpp - Windows - Text - Debug - - - PathRelative - Project - common - longlong.cpp - Windows - Text - Debug - - - PathRelative - Project - common - matrix.cpp - Windows - Text - Debug - - - PathRelative - Project - common - memory.cpp - Windows - Text - Debug - - - PathRelative - Project - common - menucmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - mimecmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - module.cpp - Windows - Text - Debug - - - PathRelative - Project - common - mstream.cpp - Windows - Text - Debug - - - PathRelative - Project - common - nbkbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - object.cpp - Windows - Text - Debug - - - PathRelative - Project - common - odbc.cpp - Windows - Text - Debug - - - PathRelative - Project - common - paper.cpp - Windows - Text - Debug - - - PathRelative - Project - common - popupcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - prntbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - process.cpp - Windows - Text - Debug - - - PathRelative - Project - common - protocol.cpp - Windows - Text - Debug - - - PathRelative - Project - common - quantize.cpp - Windows - Text - Debug - - - PathRelative - Project - common - radiocmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - regex.cpp - Windows - Text - Debug - - - PathRelative - Project - common - resource.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sckaddr.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sckfile.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sckipc.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sckstrm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sizer.cpp - Windows - Text - Debug - - - PathRelative - Project - common - socket.cpp - Windows - Text - Debug - - - PathRelative - Project - common - statbar.cpp - Windows - Text - Debug - - - PathRelative - Project - common - strconv.cpp - Windows - Text - Debug - - - PathRelative - Project - common - stream.cpp - Windows - Text - Debug - - - PathRelative - Project - common - string.cpp - Windows - Text - Debug - - - PathRelative - Project - common - sysopt.cpp - Windows - Text - Debug - - - PathRelative - Project - common - tbarbase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - textbuf.cpp - Windows - Text - Debug - - - PathRelative - Project - common - textcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - textfile.cpp - Windows - Text - Debug - - - PathRelative - Project - common - timercmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - tokenzr.cpp - Windows - Text - Debug - - - PathRelative - Project - common - toplvcmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - treebase.cpp - Windows - Text - Debug - - - PathRelative - Project - common - txtstrm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - unzip.c - Windows - Text - Debug - - - PathRelative - Project - common - url.cpp - Windows - Text - Debug - - - PathRelative - Project - common - utilscmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - valgen.cpp - Windows - Text - Debug - - - PathRelative - Project - common - validate.cpp - Windows - Text - Debug - - - PathRelative - Project - common - valtext.cpp - Windows - Text - Debug - - - PathRelative - Project - common - variant.cpp - Windows - Text - Debug - - - PathRelative - Project - common - wfstream.cpp - Windows - Text - Debug - - - PathRelative - Project - common - wincmn.cpp - Windows - Text - Debug - - - PathRelative - Project - common - wxchar.cpp - Windows - Text - Debug - - - PathRelative - Project - common - wxexpr.cpp - Windows - Text - Debug - - - PathRelative - Project - common - xpmdecod.cpp - Windows - Text - Debug - - - PathRelative - Project - common - zipstrm.cpp - Windows - Text - Debug - - - PathRelative - Project - common - zstream.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - busyinfo.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - calctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - choicdgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - dcbuffer.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - dcpsg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - dirctrlg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - dragimgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - grid.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - gridctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - gridsel.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - laywin.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - logg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - numdlgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - panelg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - prntdlgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - progdlgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - prop.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - propform.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - proplist.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - sashwin.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - scrlwing.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - spinctlg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - splash.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - splitter.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - statusbr.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - tbarsmpl.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - textdlgg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - tipdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - tipwin.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - treectlg.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - treelay.cpp - Windows - Text - Debug - - - PathRelative - Project - generic - wizard.cpp - Windows - Text - Debug - - - PathRelative - Project - html - helpctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - html - helpdata.cpp - Windows - Text - Debug - - - PathRelative - Project - html - helpfrm.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmlcell.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmlfilt.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmlpars.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmltag.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmlwin.cpp - Windows - Text - Debug - - - PathRelative - Project - html - htmprint.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_dflist.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_fonts.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_hline.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_image.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_layout.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_links.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_list.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_pre.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_style.cpp - Windows - Text - Debug - - - PathRelative - Project - html - m_tables.cpp - Windows - Text - Debug - - - PathRelative - Project - html - winpars.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - volume.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - app.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - bitmap.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - bmpbuttn.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - brush.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - button.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - caret.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - checkbox.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - checklst.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - choice.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - clipbrd.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - colordlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - colour.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - combobox.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - control.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - curico.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - cursor.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - data.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dc.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dcclient.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dcmemory.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dcprint.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dcscreen.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dde.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dialog.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dialup.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dib.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dibutils.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dir.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dirdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - dragimag.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - enhmeta.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - evtloop.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - fdrepdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - filedlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - font.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - fontdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - fontenum.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - fontutil.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - frame.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - gauge95.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - gdiimage.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - gdiobj.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - glcanvas.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - gsocket.c - Windows - Text - Debug - - - PathRelative - Project - msw - gsockmsw.c - Windows - Text - Debug - - - PathRelative - Project - msw - helpbest.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - helpchm.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - helpwin.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - icon.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - imaglist.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - iniconf.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - joystick.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - listbox.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - listctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - main.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - mdi.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - menu.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - menuitem.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - metafile.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - mimetype.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - minifram.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - msgdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - mslu.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - nativdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - notebook.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ownerdrw.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - palette.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - pen.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - penwin.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - printdlg.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - printwin.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - radiobox.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - radiobut.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - regconf.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - region.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - registry.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - scrolbar.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - settings.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - slider95.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - snglinst.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - spinbutt.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - spinctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - statbmp.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - statbox.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - statbr95.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - statline.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - stattext.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - tabctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - taskbar.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - tbar95.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - textctrl.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - tglbtn.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - thread.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - timer.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - tooltip.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - toplevel.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - treectrl.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - utils.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - utilsexc.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - accel.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - wave.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - window.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\automtn.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\dataobj.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\dropsrc.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\droptgt.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\oleutils.cpp - Windows - Text - Debug - - - PathRelative - Project - msw - ole\uuid.cpp - Windows - Text - Debug - - - RootRelative - Project - ..\lib\jpeg.lib - Windows - Library - Debug, TargetOutputFile - - - RootRelative - Project - ..\lib\png.lib - Windows - Library - Debug, TargetOutputFile - - - RootRelative - Project - ..\lib\tiff.lib - Windows - Library - Debug, TargetOutputFile - - - RootRelative - Project - ..\lib\zlib.lib - Windows - Library - Debug, TargetOutputFile - - - PathRelative - Project - ..\include - wx_cw.pch - Windows - Text - Debug - - - PathRelative - Project - ..\include - wx_cw.pch++ - Windows - Text - Debug - - - PathRelative - Project - msw - popupwin.cpp - Windows - Text - Debug - - - PathRelative - Project - common - msgout.cpp - Windows - Text - Debug - - - PathRelative - Project - common - settcmn.cpp - Windows - Text - Debug - - - - - PathRelative - Project - ..\include - wx_cw.pch - Windows - - - PathRelative - Project - ..\include - wx_cw.pch++ - Windows - - - PathRelative - Project - common - ftp.cpp - Windows - - - PathRelative - Project - common - artprov.cpp - Windows - - - PathRelative - Project - common - artstd.cpp - Windows - - - PathRelative - Project - common - choiccmn.cpp - Windows - - - PathRelative - Project - common - clipcmn.cpp - Windows - - - PathRelative - Project - common - clntdata.cpp - Windows - - - PathRelative - Project - common - cmdline.cpp - Windows - - - PathRelative - Project - common - cmdproc.cpp - Windows - - - PathRelative - Project - common - cmndata.cpp - Windows - - - PathRelative - Project - common - config.cpp - Windows - - - PathRelative - Project - common - containr.cpp - Windows - - - PathRelative - Project - common - cshelp.cpp - Windows - - - PathRelative - Project - common - ctrlcmn.cpp - Windows - - - PathRelative - Project - common - ctrlsub.cpp - Windows - - - PathRelative - Project - common - datetime.cpp - Windows - - - PathRelative - Project - common - datstrm.cpp - Windows - - - PathRelative - Project - common - db.cpp - Windows - - - PathRelative - Project - common - dbgrid.cpp - Windows - - - PathRelative - Project - common - dbtable.cpp - Windows - - - PathRelative - Project - common - dcbase.cpp - Windows - - - PathRelative - Project - common - dircmn.cpp - Windows - - - PathRelative - Project - common - dlgcmn.cpp - Windows - - - PathRelative - Project - common - dndcmn.cpp - Windows - - - PathRelative - Project - common - dobjcmn.cpp - Windows - - - PathRelative - Project - common - docmdi.cpp - Windows - - - PathRelative - Project - common - docview.cpp - Windows - - - PathRelative - Project - common - dseldlg.cpp - Windows - - - PathRelative - Project - common - dynarray.cpp - Windows - - - PathRelative - Project - common - dynlib.cpp - Windows - - - PathRelative - Project - common - dynload.cpp - Windows - - - PathRelative - Project - common - effects.cpp - Windows - - - PathRelative - Project - common - encconv.cpp - Windows - - - PathRelative - Project - common - event.cpp - Windows - - - PathRelative - Project - common - extended.c - Windows - - - PathRelative - Project - common - fddlgcmn.cpp - Windows - - - PathRelative - Project - common - ffile.cpp - Windows - - - PathRelative - Project - common - file.cpp - Windows - - - PathRelative - Project - common - fileconf.cpp - Windows - - - PathRelative - Project - common - filefn.cpp - Windows - - - PathRelative - Project - common - filename.cpp - Windows - - - PathRelative - Project - common - filesys.cpp - Windows - - - PathRelative - Project - common - fontcmn.cpp - Windows - - - PathRelative - Project - common - fontmap.cpp - Windows - - - PathRelative - Project - common - framecmn.cpp - Windows - - - PathRelative - Project - common - fs_inet.cpp - Windows - - - PathRelative - Project - common - fs_mem.cpp - Windows - - - PathRelative - Project - common - fs_zip.cpp - Windows - - - PathRelative - Project - common - appcmn.cpp - Windows - - - PathRelative - Project - common - gaugecmn.cpp - Windows - - - PathRelative - Project - common - gdicmn.cpp - Windows - - - PathRelative - Project - common - geometry.cpp - Windows - - - PathRelative - Project - common - gifdecod.cpp - Windows - - - PathRelative - Project - common - hash.cpp - Windows - - - PathRelative - Project - common - hashmap.cpp - Windows - - - PathRelative - Project - common - helpbase.cpp - Windows - - - PathRelative - Project - common - http.cpp - Windows - - - PathRelative - Project - common - iconbndl.cpp - Windows - - - PathRelative - Project - common - imagall.cpp - Windows - - - PathRelative - Project - common - imagbmp.cpp - Windows - - - PathRelative - Project - common - image.cpp - Windows - - - PathRelative - Project - common - imagfill.cpp - Windows - - - PathRelative - Project - common - imaggif.cpp - Windows - - - PathRelative - Project - common - imagiff.cpp - Windows - - - PathRelative - Project - common - imagjpeg.cpp - Windows - - - PathRelative - Project - common - imagpcx.cpp - Windows - - - PathRelative - Project - common - imagpng.cpp - Windows - - - PathRelative - Project - common - imagpnm.cpp - Windows - - - PathRelative - Project - common - imagtiff.cpp - Windows - - - PathRelative - Project - common - imagxpm.cpp - Windows - - - PathRelative - Project - common - intl.cpp - Windows - - - PathRelative - Project - common - ipcbase.cpp - Windows - - - PathRelative - Project - common - layout.cpp - Windows - - - PathRelative - Project - common - lboxcmn.cpp - Windows - - - PathRelative - Project - common - list.cpp - Windows - - - PathRelative - Project - common - log.cpp - Windows - - - PathRelative - Project - common - longlong.cpp - Windows - - - PathRelative - Project - common - matrix.cpp - Windows - - - PathRelative - Project - common - memory.cpp - Windows - - - PathRelative - Project - common - menucmn.cpp - Windows - - - PathRelative - Project - common - mimecmn.cpp - Windows - - - PathRelative - Project - common - module.cpp - Windows - - - PathRelative - Project - common - mstream.cpp - Windows - - - PathRelative - Project - common - nbkbase.cpp - Windows - - - PathRelative - Project - common - object.cpp - Windows - - - PathRelative - Project - common - odbc.cpp - Windows - - - PathRelative - Project - common - paper.cpp - Windows - - - PathRelative - Project - common - popupcmn.cpp - Windows - - - PathRelative - Project - common - prntbase.cpp - Windows - - - PathRelative - Project - common - process.cpp - Windows - - - PathRelative - Project - common - protocol.cpp - Windows - - - PathRelative - Project - common - quantize.cpp - Windows - - - PathRelative - Project - common - radiocmn.cpp - Windows - - - PathRelative - Project - common - regex.cpp - Windows - - - PathRelative - Project - common - resource.cpp - Windows - - - PathRelative - Project - common - sckaddr.cpp - Windows - - - PathRelative - Project - common - sckfile.cpp - Windows - - - PathRelative - Project - common - sckipc.cpp - Windows - - - PathRelative - Project - common - sckstrm.cpp - Windows - - - PathRelative - Project - common - settcmn.cpp - Windows - - - PathRelative - Project - common - sizer.cpp - Windows - - - PathRelative - Project - common - socket.cpp - Windows - - - PathRelative - Project - common - statbar.cpp - Windows - - - PathRelative - Project - common - strconv.cpp - Windows - - - PathRelative - Project - common - stream.cpp - Windows - - - PathRelative - Project - common - string.cpp - Windows - - - PathRelative - Project - common - sysopt.cpp - Windows - - - PathRelative - Project - common - tbarbase.cpp - Windows - - - PathRelative - Project - common - textbuf.cpp - Windows - - - PathRelative - Project - common - textcmn.cpp - Windows - - - PathRelative - Project - common - textfile.cpp - Windows - - - PathRelative - Project - common - timercmn.cpp - Windows - - - PathRelative - Project - common - tokenzr.cpp - Windows - - - PathRelative - Project - common - toplvcmn.cpp - Windows - - - PathRelative - Project - common - treebase.cpp - Windows - - - PathRelative - Project - common - txtstrm.cpp - Windows - - - PathRelative - Project - common - unzip.c - Windows - - - PathRelative - Project - common - url.cpp - Windows - - - PathRelative - Project - common - utilscmn.cpp - Windows - - - PathRelative - Project - common - valgen.cpp - Windows - - - PathRelative - Project - common - validate.cpp - Windows - - - PathRelative - Project - common - valtext.cpp - Windows - - - PathRelative - Project - common - variant.cpp - Windows - - - PathRelative - Project - common - wfstream.cpp - Windows - - - PathRelative - Project - common - wincmn.cpp - Windows - - - PathRelative - Project - common - wxchar.cpp - Windows - - - PathRelative - Project - common - wxexpr.cpp - Windows - - - PathRelative - Project - common - xpmdecod.cpp - Windows - - - PathRelative - Project - common - zipstrm.cpp - Windows - - - PathRelative - Project - common - zstream.cpp - Windows - - - PathRelative - Project - generic - busyinfo.cpp - Windows - - - PathRelative - Project - generic - calctrl.cpp - Windows - - - PathRelative - Project - generic - choicdgg.cpp - Windows - - - PathRelative - Project - generic - dcbuffer.cpp - Windows - - - PathRelative - Project - generic - dcpsg.cpp - Windows - - - PathRelative - Project - generic - dirctrlg.cpp - Windows - - - PathRelative - Project - generic - dragimgg.cpp - Windows - - - PathRelative - Project - generic - grid.cpp - Windows - - - PathRelative - Project - generic - gridctrl.cpp - Windows - - - PathRelative - Project - generic - gridsel.cpp - Windows - - - PathRelative - Project - generic - laywin.cpp - Windows - - - PathRelative - Project - generic - logg.cpp - Windows - - - PathRelative - Project - generic - numdlgg.cpp - Windows - - - PathRelative - Project - generic - panelg.cpp - Windows - - - PathRelative - Project - generic - prntdlgg.cpp - Windows - - - PathRelative - Project - generic - progdlgg.cpp - Windows - - - PathRelative - Project - generic - prop.cpp - Windows - - - PathRelative - Project - generic - propform.cpp - Windows - - - PathRelative - Project - generic - proplist.cpp - Windows - - - PathRelative - Project - generic - sashwin.cpp - Windows - - - PathRelative - Project - generic - scrlwing.cpp - Windows - - - PathRelative - Project - generic - spinctlg.cpp - Windows - - - PathRelative - Project - generic - splash.cpp - Windows - - - PathRelative - Project - generic - splitter.cpp - Windows - - - PathRelative - Project - generic - statusbr.cpp - Windows - - - PathRelative - Project - generic - tbarsmpl.cpp - Windows - - - PathRelative - Project - generic - textdlgg.cpp - Windows - - - PathRelative - Project - generic - tipdlg.cpp - Windows - - - PathRelative - Project - generic - tipwin.cpp - Windows - - - PathRelative - Project - generic - treectlg.cpp - Windows - - - PathRelative - Project - generic - treelay.cpp - Windows - - - PathRelative - Project - generic - wizard.cpp - Windows - - - PathRelative - Project - html - helpctrl.cpp - Windows - - - PathRelative - Project - html - helpdata.cpp - Windows - - - PathRelative - Project - html - helpfrm.cpp - Windows - - - PathRelative - Project - html - htmlcell.cpp - Windows - - - PathRelative - Project - html - htmlfilt.cpp - Windows - - - PathRelative - Project - html - htmlpars.cpp - Windows - - - PathRelative - Project - html - htmltag.cpp - Windows - - - PathRelative - Project - html - htmlwin.cpp - Windows - - - PathRelative - Project - html - htmprint.cpp - Windows - - - PathRelative - Project - html - m_dflist.cpp - Windows - - - PathRelative - Project - html - m_fonts.cpp - Windows - - - PathRelative - Project - html - m_hline.cpp - Windows - - - PathRelative - Project - html - m_image.cpp - Windows - - - PathRelative - Project - html - m_layout.cpp - Windows - - - PathRelative - Project - html - m_links.cpp - Windows - - - PathRelative - Project - html - m_list.cpp - Windows - - - PathRelative - Project - html - m_pre.cpp - Windows - - - PathRelative - Project - html - m_style.cpp - Windows - - - PathRelative - Project - html - m_tables.cpp - Windows - - - PathRelative - Project - html - winpars.cpp - Windows - - - PathRelative - Project - msw - volume.cpp - Windows - - - PathRelative - Project - msw - app.cpp - Windows - - - PathRelative - Project - msw - bitmap.cpp - Windows - - - PathRelative - Project - msw - bmpbuttn.cpp - Windows - - - PathRelative - Project - msw - brush.cpp - Windows - - - PathRelative - Project - msw - button.cpp - Windows - - - PathRelative - Project - msw - caret.cpp - Windows - - - PathRelative - Project - msw - checkbox.cpp - Windows - - - PathRelative - Project - msw - checklst.cpp - Windows - - - PathRelative - Project - msw - choice.cpp - Windows - - - PathRelative - Project - msw - clipbrd.cpp - Windows - - - PathRelative - Project - msw - colordlg.cpp - Windows - - - PathRelative - Project - msw - colour.cpp - Windows - - - PathRelative - Project - msw - combobox.cpp - Windows - - - PathRelative - Project - msw - control.cpp - Windows - - - PathRelative - Project - msw - curico.cpp - Windows - - - PathRelative - Project - msw - cursor.cpp - Windows - - - PathRelative - Project - msw - data.cpp - Windows - - - PathRelative - Project - msw - dc.cpp - Windows - - - PathRelative - Project - msw - dcclient.cpp - Windows - - - PathRelative - Project - msw - dcmemory.cpp - Windows - - - PathRelative - Project - msw - dcprint.cpp - Windows - - - PathRelative - Project - msw - dcscreen.cpp - Windows - - - PathRelative - Project - msw - dde.cpp - Windows - - - PathRelative - Project - msw - dialog.cpp - Windows - - - PathRelative - Project - msw - dialup.cpp - Windows - - - PathRelative - Project - msw - dib.cpp - Windows - - - PathRelative - Project - msw - dibutils.cpp - Windows - - - PathRelative - Project - msw - dir.cpp - Windows - - - PathRelative - Project - msw - dirdlg.cpp - Windows - - - PathRelative - Project - msw - dragimag.cpp - Windows - - - PathRelative - Project - msw - enhmeta.cpp - Windows - - - PathRelative - Project - msw - evtloop.cpp - Windows - - - PathRelative - Project - msw - fdrepdlg.cpp - Windows - - - PathRelative - Project - msw - filedlg.cpp - Windows - - - PathRelative - Project - msw - font.cpp - Windows - - - PathRelative - Project - msw - fontdlg.cpp - Windows - - - PathRelative - Project - msw - fontenum.cpp - Windows - - - PathRelative - Project - msw - fontutil.cpp - Windows - - - PathRelative - Project - msw - frame.cpp - Windows - - - PathRelative - Project - msw - gauge95.cpp - Windows - - - PathRelative - Project - msw - gdiimage.cpp - Windows - - - PathRelative - Project - msw - gdiobj.cpp - Windows - - - PathRelative - Project - msw - glcanvas.cpp - Windows - - - PathRelative - Project - msw - gsocket.c - Windows - - - PathRelative - Project - msw - gsockmsw.c - Windows - - - PathRelative - Project - msw - helpbest.cpp - Windows - - - PathRelative - Project - msw - helpchm.cpp - Windows - - - PathRelative - Project - msw - helpwin.cpp - Windows - - - PathRelative - Project - msw - icon.cpp - Windows - - - PathRelative - Project - msw - imaglist.cpp - Windows - - - PathRelative - Project - msw - iniconf.cpp - Windows - - - PathRelative - Project - msw - joystick.cpp - Windows - - - PathRelative - Project - msw - listbox.cpp - Windows - - - PathRelative - Project - msw - listctrl.cpp - Windows - - - PathRelative - Project - msw - main.cpp - Windows - - - PathRelative - Project - msw - mdi.cpp - Windows - - - PathRelative - Project - msw - menu.cpp - Windows - - - PathRelative - Project - msw - menuitem.cpp - Windows - - - PathRelative - Project - msw - metafile.cpp - Windows - - - PathRelative - Project - msw - mimetype.cpp - Windows - - - PathRelative - Project - msw - minifram.cpp - Windows - - - PathRelative - Project - msw - msgdlg.cpp - Windows - - - PathRelative - Project - msw - mslu.cpp - Windows - - - PathRelative - Project - msw - nativdlg.cpp - Windows - - - PathRelative - Project - msw - notebook.cpp - Windows - - - PathRelative - Project - msw - ownerdrw.cpp - Windows - - - PathRelative - Project - msw - palette.cpp - Windows - - - PathRelative - Project - msw - pen.cpp - Windows - - - PathRelative - Project - msw - penwin.cpp - Windows - - - PathRelative - Project - msw - printdlg.cpp - Windows - - - PathRelative - Project - msw - printwin.cpp - Windows - - - PathRelative - Project - msw - radiobox.cpp - Windows - - - PathRelative - Project - msw - radiobut.cpp - Windows - - - PathRelative - Project - msw - regconf.cpp - Windows - - - PathRelative - Project - msw - region.cpp - Windows - - - PathRelative - Project - msw - registry.cpp - Windows - - - PathRelative - Project - msw - scrolbar.cpp - Windows - - - PathRelative - Project - msw - settings.cpp - Windows - - - PathRelative - Project - msw - slider95.cpp - Windows - - - PathRelative - Project - msw - snglinst.cpp - Windows - - - PathRelative - Project - msw - spinbutt.cpp - Windows - - - PathRelative - Project - msw - spinctrl.cpp - Windows - - - PathRelative - Project - msw - statbmp.cpp - Windows - - - PathRelative - Project - msw - statbox.cpp - Windows - - - PathRelative - Project - msw - statbr95.cpp - Windows - - - PathRelative - Project - msw - statline.cpp - Windows - - - PathRelative - Project - msw - stattext.cpp - Windows - - - PathRelative - Project - msw - tabctrl.cpp - Windows - - - PathRelative - Project - msw - taskbar.cpp - Windows - - - PathRelative - Project - msw - tbar95.cpp - Windows - - - PathRelative - Project - msw - textctrl.cpp - Windows - - - PathRelative - Project - msw - tglbtn.cpp - Windows - - - PathRelative - Project - msw - thread.cpp - Windows - - - PathRelative - Project - msw - timer.cpp - Windows - - - PathRelative - Project - msw - tooltip.cpp - Windows - - - PathRelative - Project - msw - toplevel.cpp - Windows - - - PathRelative - Project - msw - treectrl.cpp - Windows - - - PathRelative - Project - msw - utils.cpp - Windows - - - PathRelative - Project - msw - utilsexc.cpp - Windows - - - PathRelative - Project - msw - accel.cpp - Windows - - - PathRelative - Project - msw - wave.cpp - Windows - - - PathRelative - Project - msw - window.cpp - Windows - - - PathRelative - Project - msw - ole\automtn.cpp - Windows - - - PathRelative - Project - msw - ole\dataobj.cpp - Windows - - - PathRelative - Project - msw - ole\dropsrc.cpp - Windows - - - PathRelative - Project - msw - ole\droptgt.cpp - Windows - - - PathRelative - Project - msw - ole\oleutils.cpp - Windows - - - PathRelative - Project - msw - ole\uuid.cpp - Windows - - - PathRelative - Project - msw - popupwin.cpp - Windows - - - PathRelative - Project - common - msgout.cpp - Windows - - - RootRelative - Project - ..\lib\zlib.lib - Windows - - - RootRelative - Project - ..\lib\tiff.lib - Windows - - - RootRelative - Project - ..\lib\png.lib - Windows - - - RootRelative - Project - ..\lib\jpeg.lib - Windows - - - - - copySetupRelease - - - jpeg - LinkAgainst - - RootRelative - Project - ..\lib\jpeg.lib - Windows - - - - png - LinkAgainst - - RootRelative - Project - ..\lib\png.lib - Windows - - - - tiff - LinkAgainst - - RootRelative - Project - ..\lib\tiff.lib - Windows - - - - zlib - LinkAgainst - - RootRelative - Project - ..\lib\zlib.lib - Windows - - - - - - copySetupDebug - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path: - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path: - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerNone - PreLinker - PostLinkerBatch File Runner - TargetnamecopySetupDebug - OutputDirectory - Path - PathFormatWindows - PathRootProject - - SaveEntriesUsingRelativePathsfalse - - - FileMappings - - FileTypeTEXT - FileExtension.bat - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pl - CompilerMW Perl - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - Perl_Prefix_Filename - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata1 - MWCodeGen_PPC_vrsave1 - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo1 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosefalse - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixname - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0 - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion0 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut25 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames0 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1463898714 - MWJava_Proj_HTMLAppName - MWJava_Proj_PathVersion0 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32Name - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - MWJava_Proj_useJCVM1 - MWJava_Proj_aidData - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DGLX - ckid - Proj - WSPC - mcvs - - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeLPPA - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWProject_X86_typeApplication - MWProject_X86_outfilenoname.exe - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - Resource Flattener Panel - 0100000000000000000000000000000000000000000000000000000000000000 - 0000074F75742E62696E00000000000000000000000000000000000000000000 - 0000 - - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWWinRC_prefixname - - - GlobalOptimizer_X86__optimizationlevelLevel0 - GlobalOptimizer_X86__optforSpeed - - - - Name - cwdcopysetup.bat - Windows - Text - Debug - - - - - Name - cwdcopysetup.bat - Windows - - - - - copySetupRelease - - - - UserSourceTrees - - - AlwaysSearchUserPathsfalse - InterpretDOSAndUnixPathsfalse - RequireFrameworkStyleIncludesfalse - UserSearchPaths - - SearchPath - Path: - PathFormatWindows - PathRootProject - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - SystemSearchPaths - - SearchPath - Path: - PathFormatWindows - PathRootCodeWarrior - - Recursivetrue - FrameworkPathfalse - HostFlagsAll - - - - - MWRuntimeSettings_WorkingDirectory - MWRuntimeSettings_CommandLine - MWRuntimeSettings_HostApplication - Path - PathFormatGeneric - PathRootAbsolute - - MWRuntimeSettings_EnvVars - - - LinkerNone - PreLinker - PostLinkerBatch File Runner - TargetnamecopySetupRelease - OutputDirectory - Path - PathFormatWindows - PathRootProject - - SaveEntriesUsingRelativePathsfalse - - - FileMappings - - FileTypeTEXT - FileExtension.bat - Compiler - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - FileTypeTEXT - FileExtension.pl - CompilerMW Perl - EditLanguage - Precompilefalse - Launchablefalse - ResourceFilefalse - IgnoredByMakefalse - - - - - CacheModDatestrue - ActivateBrowsertrue - DumpBrowserInfofalse - CacheSubprojectstrue - UseThirdPartyDebuggerfalse - DebuggerAppPath - Path - PathFormatGeneric - PathRootAbsolute - - DebuggerCmdLineArgs - DebuggerWorkingDir - Path - PathFormatGeneric - PathRootAbsolute - - - - LogSystemMessagestrue - AutoTargetDLLsfalse - StopAtWatchpointstrue - PauseWhileRunningfalse - PauseInterval5 - PauseUIFlags0 - AltExePath - Path - PathFormatGeneric - PathRootAbsolute - - StopAtTempBPOnLaunchtrue - CacheSymbolicstrue - TempBPFunctionNamemain - TempBPType0 - - - Enabledfalse - ConnectionName - DownloadPath - LaunchRemoteAppfalse - RemoteAppPath - - - OtherExecutables - - - CustomColor1 - Red0 - Green32767 - Blue0 - - CustomColor2 - Red0 - Green32767 - Blue0 - - CustomColor3 - Red0 - Green32767 - Blue0 - - CustomColor4 - Red0 - Green32767 - Blue0 - - - - Perl_Prefix_Filename - - - MWCodeGen_PPC_structalignmentMC68K - MWCodeGen_PPC_tracebacktablesNone - MWCodeGen_PPC_processorGeneric - MWCodeGen_PPC_readonlystrings0 - MWCodeGen_PPC_tocdata1 - MWCodeGen_PPC_profiler0 - MWCodeGen_PPC_fpcontract1 - MWCodeGen_PPC_schedule0 - MWCodeGen_PPC_peephole1 - MWCodeGen_PPC_processorspecific0 - MWCodeGen_PPC_altivec0 - MWCodeGen_PPC_vectortocdata1 - MWCodeGen_PPC_vrsave1 - - - MWCodeGen_X86_processorGeneric - MWCodeGen_X86_alignmentbytes8 - MWCodeGen_X86_exceptionsZeroOverhead - MWCodeGen_X86_extinst_mmx0 - MWCodeGen_X86_extinst_3dnow0 - MWCodeGen_X86_use_mmx_3dnow_convention0 - MWCodeGen_X86_machinecodelisting0 - MWCodeGen_X86_intrinsics0 - MWCodeGen_X86_syminfo0 - MWCodeGen_X86_codeviewinfo1 - MWCodeGen_X86_extinst_cmov_fcomi0 - MWCodeGen_X86_extinst_sse0 - - - MWDebugger_X86_Exceptions - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - PDisasmX86_showHeaderstrue - PDisasmX86_showSymTabtrue - PDisasmX86_showCodetrue - PDisasmX86_showSourcefalse - PDisasmX86_showHextrue - PDisasmX86_showRelocationtrue - PDisasmX86_showCommentsfalse - PDisasmX86_showDebugfalse - PDisasmX86_showExceptionsfalse - PDisasmX86_showDatatrue - PDisasmX86_showRawfalse - PDisasmX86_verbosefalse - - - MWDisassembler_PPC_showcode1 - MWDisassembler_PPC_extended1 - MWDisassembler_PPC_mix0 - MWDisassembler_PPC_nohex0 - MWDisassembler_PPC_showdata1 - MWDisassembler_PPC_showexceptions1 - MWDisassembler_PPC_showsym0 - MWDisassembler_PPC_shownames1 - - - MWFrontEnd_C_cplusplus0 - MWFrontEnd_C_checkprotos0 - MWFrontEnd_C_arm0 - MWFrontEnd_C_trigraphs0 - MWFrontEnd_C_onlystdkeywords0 - MWFrontEnd_C_enumsalwaysint0 - MWFrontEnd_C_mpwpointerstyle0 - MWFrontEnd_C_prefixname - MWFrontEnd_C_ansistrict0 - MWFrontEnd_C_mpwcnewline0 - MWFrontEnd_C_wchar_type1 - MWFrontEnd_C_enableexceptions1 - MWFrontEnd_C_dontreusestrings0 - MWFrontEnd_C_poolstrings0 - MWFrontEnd_C_dontinline0 - MWFrontEnd_C_useRTTI1 - MWFrontEnd_C_multibyteaware0 - MWFrontEnd_C_unsignedchars0 - MWFrontEnd_C_autoinline0 - MWFrontEnd_C_booltruefalse1 - MWFrontEnd_C_direct_to_som0 - MWFrontEnd_C_som_env_check0 - MWFrontEnd_C_alwaysinline0 - MWFrontEnd_C_inlinelevel0 - MWFrontEnd_C_ecplusplus0 - MWFrontEnd_C_objective_c0 - MWFrontEnd_C_defer_codegen0 - - - MWFTP_Post_hostName - MWFTP_Post_username - MWFTP_Post_password0 - MWFTP_Post_remoteDir - MWFTP_Post_ftp_PathVersion0 - MWFTP_Post_ftp_PathType0 - MWFTP_Post_ftp_PathFormat0 - MWFTP_Post_ftp_tree - MWFTP_Post_uploadDir - MWFTP_Post_ftp_port21 - MWFTP_Post_SendBin1 - MWFTP_Post_ShouldLog1 - - - MWCommandLine_Java_clsName - MWCommandLine_Java_args - - - MWVJavaDebugging_Protocol1 - MWVJavaDebugging_JDKVersion1 - MWVJavaDebugging_TimeOut25 - MWVJavaDebugging_SupportSlowDevicesfalse - - - MWJavaDoc_Proj_Version1 - MWJavaDoc_Proj_Depricated1 - MWJavaDoc_Proj_Author1 - MWJavaDoc_Proj_Index1 - MWJavaDoc_Proj_Tree1 - MWJavaDoc_Proj_SunResolveToSame0 - MWJavaDoc_Proj_Shortnames0 - MWJavaDoc_Proj_Folder0 - MWJavaDoc_Proj_GenerateAPILinks0 - MWJavaDoc_Proj_scopePublic - MWJavaDoc_Proj_encodingName - MWJavaDoc_Proj_decodingName - MWJavaDoc_Proj_javaPackagePathhttp://java.sun.com/products/jdk/1.1/docs/api/ - - - MWJava_Language_optimizefalse - MWJava_Language_warnDeprecatedfalse - MWJava_Language_emitMapfalse - MWJava_Language_strictFileNamesfalse - MWJava_Language_strictFileHierarchyfalse - MWJava_Language_1_1_Compatiblefalse - MWJava_Language_emitHeaders0 - MWJava_Language_headerTypeJNINativeHeaders - MWJava_Language_packageFilter - MWJava_Language_genCommentstrue - MWJava_Language_genHeadersfalse - - - MWJava_Output_outputtypeJarFile - MWJava_Output_outfileJavaClasses.jar - MWJava_Output_ftype1514754080 - MWJava_Output_fcreator1297570384 - MWJava_Output_compress0 - MWJava_Output_genManifest0 - MWJava_Output_trunctypeFront - MWJava_Output_deleteClasses0 - MWJava_Output_consoleApp1 - - - MWJava_Proj_projtypeApplet - MWJava_Proj_mainClassName - MWJava_Proj_HTMLAppCreator1463898714 - MWJava_Proj_HTMLAppName - MWJava_Proj_PathVersion0 - MWJava_Proj_PathType0 - MWJava_Proj_PathFormat0 - MWJava_Proj_tree - MWJava_Proj_HTMLAppWin32Name - MWJava_Proj_compress0 - MWJava_Proj_useVM1 - MWJava_Proj_vmarguments - MWJava_Proj_vmName - MWJava_Proj_simPropFile - MWJava_Proj_useJCVM1 - MWJava_Proj_aidData - - - MWLinker_PPC_linksym1 - MWLinker_PPC_symfullpath1 - MWLinker_PPC_linkmap0 - MWLinker_PPC_nolinkwarnings0 - MWLinker_PPC_dontdeadstripinitcode0 - MWLinker_PPC_permitmultdefs0 - MWLinker_PPC_linkmodeFast - MWLinker_PPC_initname - MWLinker_PPC_mainname__start - MWLinker_PPC_termname - - - MWLinker_X86_entrypointusageDefault - MWLinker_X86_entrypoint - MWLinker_X86_subsystemWinGUI - MWLinker_X86_subsysmajorid4 - MWLinker_X86_subsysminorid0 - MWLinker_X86_usrmajorid0 - MWLinker_X86_usrminorid0 - MWLinker_X86_commandfile - MWLinker_X86_generatemap0 - MWLinker_X86_linksym0 - MWLinker_X86_linkCV1 - - - MWMerge_MacOS_projectTypeApplication - MWMerge_MacOS_outputNameMerge Out - MWMerge_MacOS_outputCreator???? - MWMerge_MacOS_outputTypeAPPL - MWMerge_MacOS_suppressWarning0 - MWMerge_MacOS_copyFragments1 - MWMerge_MacOS_copyResources1 - MWMerge_MacOS_flattenResource0 - MWMerge_MacOS_flatFileNamea.rsrc - MWMerge_MacOS_flatFileOutputPath - Path: - PathFormatMacOS - PathRootProject - - MWMerge_MacOS_skipResources - DGLX - ckid - Proj - WSPC - mcvs - - - - MWMacOSPackager_UsePackager0 - MWMacOSPackager_FolderToPackage - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreateClassicAlias0 - MWMacOSPackager_ClassicAliasMethodUseTargetOutput - MWMacOSPackager_ClassicAliasPath - Path: - PathFormatMacOS - PathRootProject - - MWMacOSPackager_CreatePkgInfo0 - MWMacOSPackager_PkgCreatorType???? - MWMacOSPackager_PkgFileTypeLPPA - - - MWPEF_exportsNone - MWPEF_libfolder0 - MWPEF_sortcodeNone - MWPEF_expandbss0 - MWPEF_sharedata0 - MWPEF_olddefversion0 - MWPEF_oldimpversion0 - MWPEF_currentversion0 - MWPEF_fragmentname - MWPEF_collapsereloads0 - - - MWAssembler_PPC_auxheader0 - MWAssembler_PPC_symmodeMac - MWAssembler_PPC_dialectPPC - MWAssembler_PPC_prefixfile - MWAssembler_PPC_typecheck0 - MWAssembler_PPC_warnings0 - MWAssembler_PPC_casesensitive0 - - - GlobalOptimizer_PPC_optimizationlevelLevel0 - GlobalOptimizer_PPC_optforSpeed - - - MWProject_PPC_typeApplication - MWProject_PPC_outfilea.out - MWProject_PPC_filecreator???? - MWProject_PPC_filetypeAPPL - MWProject_PPC_size384 - MWProject_PPC_minsize384 - MWProject_PPC_stacksize64 - MWProject_PPC_flags22720 - MWProject_PPC_symfilename - MWProject_PPC_rsrcname - MWProject_PPC_rsrcheaderNative - MWProject_PPC_rsrctype???? - MWProject_PPC_rsrcid0 - MWProject_PPC_rsrcflags0 - MWProject_PPC_rsrcstore0 - MWProject_PPC_rsrcmerge0 - MWProject_PPC_flatrsrc0 - MWProject_PPC_flatrsrcoutputdir - Path: - PathFormatMacOS - PathRootProject - - MWProject_PPC_flatrsrcfilename - - - MWProject_X86_typeApplication - MWProject_X86_outfilenoname.exe - MWProject_X86_baseaddress4194304 - MWProject_X86_maxstacksize1024 - MWProject_X86_minstacksize4 - MWProject_X86_size1024 - MWProject_X86_minsize4 - MWProject_X86_importlib - Resource Flattener Panel - 0100000000000000000000000000000000000000000000000000000000000000 - 0000074F75742E62696E00000000000000000000000000000000000000000000 - 0000 - - - - MWRez_Language_maxwidth80 - MWRez_Language_scriptRoman - MWRez_Language_alignmentAlign1 - MWRez_Language_filtermodeFilterSkip - MWRez_Language_suppresswarnings0 - MWRez_Language_escapecontrolchars1 - MWRez_Language_prefixname - MWRez_Language_filteredtypes'CODE' 'DATA' 'PICT' - - - MWWarning_C_warn_illpragma0 - MWWarning_C_warn_emptydecl0 - MWWarning_C_warn_possunwant0 - MWWarning_C_warn_unusedvar0 - MWWarning_C_warn_unusedarg0 - MWWarning_C_warn_extracomma0 - MWWarning_C_pedantic0 - MWWarning_C_warningerrors0 - MWWarning_C_warn_hidevirtual0 - MWWarning_C_warn_implicitconv0 - MWWarning_C_warn_notinlined0 - MWWarning_C_warn_structclass0 - - - MWWinRC_prefixname - - - GlobalOptimizer_X86__optimizationlevelLevel0 - GlobalOptimizer_X86__optforSpeed - - - - Name - cwcopysetup.bat - Windows - Text - Debug - - - - - Name - cwcopysetup.bat - Windows - - - - - - - wxlib Win32 debug - wxlib Win32 release - jpeg - png - tiff - zlib - copySetupDebug - copySetupRelease - - - - batch files - - copySetupRelease - Name - cwcopysetup.bat - Windows - - - copySetupDebug - Name - cwdcopysetup.bat - Windows - - - common - - wxlib Win32 debug - PathRelative - Project - common - appcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - artprov.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - artstd.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - choiccmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - clipcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - clntdata.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - cmdline.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - cmdproc.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - cmndata.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - config.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - containr.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - cshelp.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - ctrlcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - ctrlsub.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - datetime.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - datstrm.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - db.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dbgrid.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dbtable.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dcbase.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dircmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dlgcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dndcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dobjcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - docmdi.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - docview.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dseldlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dynarray.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dynlib.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - dynload.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - effects.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - encconv.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - event.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - extended.c - Windows - - - wxlib Win32 debug - PathRelative - Project - common - fddlgcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - ffile.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - file.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - fileconf.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - filefn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - filename.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - filesys.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - fontcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - fontmap.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - framecmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - fs_inet.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - fs_mem.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - fs_zip.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - ftp.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - gaugecmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - gdicmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - geometry.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - gifdecod.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - hash.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - hashmap.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - helpbase.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - http.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - iconbndl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imagall.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imagbmp.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - image.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imagfill.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imaggif.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imagiff.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imagjpeg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imagpcx.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imagpng.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imagpnm.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imagtiff.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - imagxpm.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - intl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - ipcbase.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - layout.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - lboxcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - list.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - log.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - longlong.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - matrix.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - memory.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - menucmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - mimecmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - module.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - msgout.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - mstream.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - nbkbase.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - object.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - odbc.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - paper.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - popupcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - prntbase.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - process.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - protocol.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - quantize.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - radiocmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - regex.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - resource.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - sckaddr.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - sckfile.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - sckipc.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - sckstrm.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - settcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - sizer.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - socket.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - statbar.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - strconv.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - stream.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - string.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - sysopt.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - tbarbase.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - textbuf.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - textcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - textfile.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - timercmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - tokenzr.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - toplvcmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - treebase.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - txtstrm.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - unzip.c - Windows - - - wxlib Win32 debug - PathRelative - Project - common - url.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - utilscmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - valgen.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - validate.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - valtext.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - variant.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - wfstream.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - wincmn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - wxchar.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - wxexpr.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - xpmdecod.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - zipstrm.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - common - zstream.cpp - Windows - - - generic - - wxlib Win32 debug - PathRelative - Project - generic - busyinfo.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - calctrl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - choicdgg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - dcbuffer.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - dcpsg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - dirctrlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - dragimgg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - grid.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - gridctrl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - gridsel.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - laywin.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - logg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - numdlgg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - panelg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - prntdlgg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - progdlgg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - prop.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - propform.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - proplist.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - sashwin.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - scrlwing.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - spinctlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - splash.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - splitter.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - statusbr.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - tbarsmpl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - textdlgg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - tipdlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - tipwin.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - treectlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - treelay.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - generic - wizard.cpp - Windows - - - headers - - wxlib Win32 release - PathRelative - Project - ..\include - wx_cw.pch - Windows - - - wxlib Win32 release - PathRelative - Project - ..\include - wx_cw.pch++ - Windows - - - wxlib Win32 debug - PathRelative - Project - ..\include - wx_cw_d.pch - Windows - - - wxlib Win32 debug - PathRelative - Project - ..\include - wx_cw_d.pch++ - Windows - - - html - - wxlib Win32 debug - PathRelative - Project - html - helpctrl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - helpdata.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - helpfrm.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - htmlcell.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - htmlfilt.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - htmlpars.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - htmltag.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - htmlwin.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - htmprint.cpp - Windows - - modules - - wxlib Win32 debug - PathRelative - Project - html - m_dflist.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - m_fonts.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - m_hline.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - m_image.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - m_layout.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - m_links.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - m_list.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - m_pre.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - m_style.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - html - m_tables.cpp - Windows - - - - wxlib Win32 debug - PathRelative - Project - html - winpars.cpp - Windows - - - msw - - wxlib Win32 debug - PathRelative - Project - msw - accel.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - app.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - ole\automtn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - bitmap.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - bmpbuttn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - brush.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - button.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - caret.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - checkbox.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - checklst.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - choice.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - clipbrd.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - colordlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - colour.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - combobox.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - control.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - curico.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - cursor.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - data.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - ole\dataobj.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dc.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dcclient.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dcmemory.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dcprint.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dcscreen.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dde.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dialog.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dialup.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dib.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dibutils.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dir.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dirdlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - dragimag.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - ole\dropsrc.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - ole\droptgt.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - enhmeta.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - evtloop.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - fdrepdlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - filedlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - font.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - fontdlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - fontenum.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - fontutil.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - frame.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - gauge95.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - gdiimage.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - gdiobj.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - glcanvas.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - gsocket.c - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - gsockmsw.c - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - helpbest.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - helpchm.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - helpwin.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - icon.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - imaglist.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - iniconf.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - joystick.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - listbox.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - listctrl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - main.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - mdi.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - menu.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - menuitem.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - metafile.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - mimetype.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - minifram.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - msgdlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - mslu.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - nativdlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - notebook.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - ole\oleutils.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - ownerdrw.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - palette.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - pen.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - penwin.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - popupwin.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - printdlg.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - printwin.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - radiobox.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - radiobut.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - regconf.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - region.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - registry.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - scrolbar.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - settings.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - slider95.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - snglinst.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - spinbutt.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - spinctrl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - statbmp.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - statbox.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - statbr95.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - statline.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - stattext.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - tabctrl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - taskbar.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - tbar95.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - textctrl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - tglbtn.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - thread.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - timer.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - tooltip.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - toplevel.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - treectrl.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - utils.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - utilsexc.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - ole\uuid.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - volume.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - wave.cpp - Windows - - - wxlib Win32 debug - PathRelative - Project - msw - window.cpp - Windows - - - wx-addon libraries - jpeg - - jpeg - PathRelative - Project - - jpeg\jcapimin.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcapistd.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jccoefct.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jccolor.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcdctmgr.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jchuff.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcinit.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcmainct.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcmarker.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcmaster.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcomapi.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcparam.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcphuff.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcprepct.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jcsample.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jctrans.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdapimin.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdapistd.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdatadst.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdatasrc.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdcoefct.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdcolor.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jddctmgr.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdhuff.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdinput.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdmainct.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdmarker.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdmaster.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdmerge.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdphuff.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdpostct.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdsample.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jdtrans.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jerror.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jfdctflt.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jfdctfst.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jfdctint.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jidctflt.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jidctfst.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jidctint.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jidctred.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jmemansi.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jmemmgr.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jquant1.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jquant2.c - Windows - - - jpeg - PathRelative - Project - - jpeg\jutils.c - Windows - - - tiff - - tiff - PathRelative - Project - - tiff\tif_aux.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_close.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_codec.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_compress.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_dir.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_dirinfo.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_dirread.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_dirwrite.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_dumpmode.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_error.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_fax3.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_fax3sm.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_flush.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_getimage.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_jpeg.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_luv.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_lzw.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_next.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_open.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_packbits.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_pixarlog.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_predict.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_print.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_read.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_strip.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_swab.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_thunder.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_tile.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_version.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_warning.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_win32.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_write.c - Windows - - - tiff - PathRelative - Project - - tiff\tif_zip.c - Windows - - - png - - png - PathRelative - Project - - png\png.c - Windows - - - png - PathRelative - Project - - png\pngerror.c - Windows - - - png - PathRelative - Project - - png\pngget.c - Windows - - - png - PathRelative - Project - - png\pngmem.c - Windows - - - png - PathRelative - Project - - png\pngpread.c - Windows - - - png - PathRelative - Project - - png\pngread.c - Windows - - - png - PathRelative - Project - - png\pngrio.c - Windows - - - png - PathRelative - Project - - png\pngrtran.c - Windows - - - png - PathRelative - Project - - png\pngrutil.c - Windows - - - png - PathRelative - Project - - png\pngset.c - Windows - - - png - PathRelative - Project - - png\pngtrans.c - Windows - - - png - PathRelative - Project - - png\pngwio.c - Windows - - - png - PathRelative - Project - - png\pngwrite.c - Windows - - - png - PathRelative - Project - - png\pngwtran.c - Windows - - - png - PathRelative - Project - - png\pngwutil.c - Windows - - - zlib - - zlib - PathRelative - Project - - zlib\adler32.c - Windows - - - zlib - PathRelative - Project - - zlib\compress.c - Windows - - - zlib - PathRelative - Project - - zlib\crc32.c - Windows - - - zlib - PathRelative - Project - - zlib\deflate.c - Windows - - - zlib - PathRelative - Project - - zlib\gzio.c - Windows - - - zlib - PathRelative - Project - - zlib\infblock.c - Windows - - - zlib - PathRelative - Project - - zlib\infcodes.c - Windows - - - zlib - PathRelative - Project - - zlib\inffast.c - Windows - - - zlib - PathRelative - Project - - zlib\inflate.c - Windows - - - zlib - PathRelative - Project - - zlib\inftrees.c - Windows - - - zlib - PathRelative - Project - - zlib\infutil.c - Windows - - - zlib - PathRelative - Project - - zlib\trees.c - Windows - - - zlib - PathRelative - Project - - zlib\uncompr.c - Windows - - - zlib - PathRelative - Project - - zlib\zutil.c - Windows - - - - wxlib Win32 debug - RootRelative - Project - ..\lib\jpeg.lib - Windows - - - wxlib Win32 debug - RootRelative - Project - ..\lib\png.lib - Windows - - - wxlib Win32 debug - RootRelative - Project - ..\lib\tiff.lib - Windows - - - wxlib Win32 debug - RootRelative - Project - ..\lib\zlib.lib - Windows - - - - -