diff --git a/samples/access/Makefile.in b/samples/access/Makefile.in
new file mode 100644
index 0000000000..8d65e355fb
--- /dev/null
+++ b/samples/access/Makefile.in
@@ -0,0 +1,26 @@
+#
+# File: makefile.unx
+# Author: Julian Smart
+# Created: 1998
+# Updated:
+# Copyright: (c) 1998 Julian Smart
+#
+# "%W% %G%"
+#
+# Makefile for accesstest example (UNIX).
+
+top_srcdir = @top_srcdir@/..
+top_builddir = ../..
+program_dir = samples/accesstest
+
+PROGRAM=accesstest
+
+OBJECTS =$(PROGRAM).o
+DEPFILES=$(PROGRAM).d
+
+RESOPTIONS=-i $(top_srcdir)/$(program_dir) mondrian.r
+SETOPTIONS=-a C
+
+include ../../src/makeprog.env
+
+@IF_GNU_MAKE@-include $(DEPFILES)
diff --git a/samples/access/accesstest.cpp b/samples/access/accesstest.cpp
new file mode 100644
index 0000000000..9c21331683
--- /dev/null
+++ b/samples/access/accesstest.cpp
@@ -0,0 +1,239 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: accesstest.cpp
+// Purpose: wxWindows accessibility sample
+// Author: Julian Smart
+// Modified by:
+// Created: 2002-02-12
+// RCS-ID: $Id$
+// Copyright: (c) Julian Smart
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+// ============================================================================
+// declarations
+// ============================================================================
+
+// ----------------------------------------------------------------------------
+// headers
+// ----------------------------------------------------------------------------
+
+// For compilers that support precompilation, includes "wx/wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+ #pragma hdrstop
+#endif
+
+// for all others, include the necessary headers (this file is usually all you
+// need because it includes almost all "standard" wxWindows headers)
+#ifndef WX_PRECOMP
+ #include "wx/wx.h"
+#endif
+
+#include "wx/access.h"
+
+// ----------------------------------------------------------------------------
+// resources
+// ----------------------------------------------------------------------------
+
+// the application icon (under Windows and OS/2 it is in resources)
+#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__)
+ #include "mondrian.xpm"
+#endif
+
+// ----------------------------------------------------------------------------
+// private classes
+// ----------------------------------------------------------------------------
+
+// Define a new application type, each program should derive a class from wxApp
+class MyApp : public wxApp
+{
+public:
+ // override base class virtuals
+ // ----------------------------
+
+ // this one is called on application startup and is a good place for the app
+ // initialization (doing it here and not in the ctor allows to have an error
+ // return: if OnInit() returns false, the application terminates)
+ virtual bool OnInit();
+};
+
+// Define a new frame type: this is going to be our main frame
+class MyFrame : public wxFrame
+{
+public:
+ // ctor(s)
+ MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size,
+ long style = wxDEFAULT_FRAME_STYLE);
+
+ // event handlers (these functions should _not_ be virtual)
+ void OnQuit(wxCommandEvent& event);
+ void OnAbout(wxCommandEvent& event);
+
+private:
+ // any class wishing to process wxWindows events must use this macro
+ DECLARE_EVENT_TABLE()
+};
+
+// ----------------------------------------------------------------------------
+// constants
+// ----------------------------------------------------------------------------
+
+// IDs for the controls and the menu commands
+enum
+{
+ // menu items
+ AccessTest_Quit = 1,
+
+ // it is important for the id corresponding to the "About" command to have
+ // this standard value as otherwise it won't be handled properly under Mac
+ // (where it is special and put into the "Apple" menu)
+ AccessTest_About = wxID_ABOUT
+};
+
+// ----------------------------------------------------------------------------
+// event tables and other macros for wxWindows
+// ----------------------------------------------------------------------------
+
+// the event tables connect the wxWindows events with the functions (event
+// handlers) which process them. It can be also done at run-time, but for the
+// simple menu events like this the static method is much simpler.
+BEGIN_EVENT_TABLE(MyFrame, wxFrame)
+ EVT_MENU(AccessTest_Quit, MyFrame::OnQuit)
+ EVT_MENU(AccessTest_About, MyFrame::OnAbout)
+END_EVENT_TABLE()
+
+// Create a new application object: this macro will allow wxWindows to create
+// the application object during program execution (it's better than using a
+// static object for many reasons) and also declares the accessor function
+// wxGetApp() which will return the reference of the right type (i.e. MyApp and
+// not wxApp)
+IMPLEMENT_APP(MyApp)
+
+// ============================================================================
+// implementation
+// ============================================================================
+
+// ----------------------------------------------------------------------------
+// the application class
+// ----------------------------------------------------------------------------
+
+// 'Main program' equivalent: the program execution "starts" here
+bool MyApp::OnInit()
+{
+ // create the main application window
+ MyFrame *frame = new MyFrame(_T("AccessTest wxWindows App"),
+ wxPoint(50, 50), wxSize(450, 340));
+
+ // and show it (the frames, unlike simple controls, are not shown when
+ // created initially)
+ frame->Show(TRUE);
+
+ // success: wxApp::OnRun() will be called which will enter the main message
+ // loop and the application will run. If we returned FALSE here, the
+ // application would exit immediately.
+ return TRUE;
+}
+
+class FrameAccessible: public wxWindowAccessible
+{
+public:
+ FrameAccessible(wxWindow* win): wxWindowAccessible(win) {}
+
+ // Gets the name of the specified object.
+ virtual wxAccStatus GetName(int childId, wxString* name)
+ {
+#if 1
+ if (childId == wxACC_SELF)
+ {
+ * name = wxT("Julian's Frame");
+ return wxACC_OK;
+ }
+ else
+#endif
+ return wxACC_NOT_IMPLEMENTED;
+ }
+};
+
+class ScrolledWindowAccessible: public wxWindowAccessible
+{
+public:
+ ScrolledWindowAccessible(wxWindow* win): wxWindowAccessible(win) {}
+
+ // Gets the name of the specified object.
+ virtual wxAccStatus GetName(int childId, wxString* name)
+ {
+ if (childId == wxACC_SELF)
+ {
+ * name = wxT("My scrolled window");
+ return wxACC_OK;
+ }
+ else
+ return wxACC_NOT_IMPLEMENTED;
+ }
+};
+
+// ----------------------------------------------------------------------------
+// main frame
+// ----------------------------------------------------------------------------
+
+// frame constructor
+MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size, long style)
+ : wxFrame(NULL, -1, title, pos, size, style)
+{
+ SetAccessible(new FrameAccessible(this));
+
+ // set the frame icon
+ SetIcon(wxICON(mondrian));
+
+#if wxUSE_MENUS
+ // create a menu bar
+ wxMenu *menuFile = new wxMenu;
+
+ // the "About" item should be in the help menu
+ wxMenu *helpMenu = new wxMenu;
+ helpMenu->Append(AccessTest_About, _T("&About...\tF1"), _T("Show about dialog"));
+
+ menuFile->Append(AccessTest_Quit, _T("E&xit\tAlt-X"), _T("Quit this program"));
+
+ // now append the freshly created menu to the menu bar...
+ wxMenuBar *menuBar = new wxMenuBar();
+ menuBar->Append(menuFile, _T("&File"));
+ menuBar->Append(helpMenu, _T("&Help"));
+
+ // ... and attach this menu bar to the frame
+ SetMenuBar(menuBar);
+#endif // wxUSE_MENUS
+
+#if wxUSE_STATUSBAR
+ // create a status bar just for fun (by default with 1 pane only)
+ CreateStatusBar(2);
+ SetStatusText(_T("Welcome to wxWindows!"));
+#endif // wxUSE_STATUSBAR
+
+#if 1
+ wxListBox* listBox = new wxListBox(this, -1);
+ listBox->SetAccessible(new ScrolledWindowAccessible(listBox));
+#else
+ wxScrolledWindow* scrolledWindow = new wxScrolledWindow(this, -1);
+ scrolledWindow->SetAccessible(new ScrolledWindowAccessible(scrolledWindow));
+#endif
+}
+
+
+// event handlers
+
+void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
+{
+ // TRUE is to force the frame to close
+ Close(TRUE);
+}
+
+void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
+{
+ wxString msg;
+ msg.Printf( _T("This is the About dialog of the AccessTest sample.\n")
+ _T("Welcome to %s"), wxVERSION_STRING);
+
+ wxMessageBox(msg, _T("About AccessTest"), wxOK | wxICON_INFORMATION, this);
+}
diff --git a/samples/access/accesstest.dsp b/samples/access/accesstest.dsp
new file mode 100644
index 0000000000..6dc418b316
--- /dev/null
+++ b/samples/access/accesstest.dsp
@@ -0,0 +1,155 @@
+# Microsoft Developer Studio Project File - Name="accesstest" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Application" 0x0101
+
+CFG=accesstest - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "accesstest.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "accesstest.mak" CFG="accesstest - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "accesstest - Win32 Release DLL" (based on "Win32 (x86) Application")
+!MESSAGE "accesstest - Win32 Debug DLL" (based on "Win32 (x86) Application")
+!MESSAGE "accesstest - Win32 Release" (based on "Win32 (x86) Application")
+!MESSAGE "accesstest - Win32 Debug" (based on "Win32 (x86) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+MTL=midl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "accesstest - Win32 Release DLL"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ReleaseDll"
+# PROP BASE Intermediate_Dir "ReleaseDll"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ReleaseDll"
+# PROP Intermediate_Dir "ReleaseDll"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W4 /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /YX /FD /c
+# ADD CPP /nologo /MD /W4 /O2 /I "../../include" /I "..\..\lib\mswdll" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /D "_MT" /D wxUSE_GUI=1 /D "WXUSINGDLL" /YX /FD /c
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD BASE RSC /l 0x409 /i "../../include" /d "NDEBUG"
+# ADD RSC /l 0x409 /i "../../include" /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /machine:I386
+# ADD LINK32 oleacc.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib ..\..\lib\wxmsw250.lib /nologo /subsystem:windows /machine:I386
+
+!ELSEIF "$(CFG)" == "accesstest - Win32 Debug DLL"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "DebugDll"
+# PROP BASE Intermediate_Dir "DebugDll"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "DebugDll"
+# PROP Intermediate_Dir "DebugDll"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W4 /Zi /Od /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /YX /FD /c
+# ADD CPP /nologo /MDd /W4 /Zi /Od /I "../../include" /I "..\..\lib\mswdlld" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /D "_MT" /D wxUSE_GUI=1 /D "__WXDEBUG__" /D WXDEBUG=1 /D "WXUSINGDLL" /YX /FD /c
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD BASE RSC /l 0x409 /i "../../include" /d "_DEBUG"
+# ADD RSC /l 0x409 /i "../../include" /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 oleacc.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib ..\..\lib\wxmsw250d.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
+
+!ELSEIF "$(CFG)" == "accesstest - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W4 /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /YX /FD /c
+# ADD CPP /nologo /MD /W4 /O2 /I "../../include" /I "..\..\lib\msw" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /D "_MT" /D wxUSE_GUI=1 /YX /FD /c
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD BASE RSC /l 0x409 /i "../../include" /d "NDEBUG"
+# ADD RSC /l 0x409 /i "../../include" /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /machine:I386
+# ADD LINK32 oleacc.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib ..\..\lib\zlib.lib ..\..\lib\regex.lib ..\..\lib\png.lib ..\..\lib\jpeg.lib ..\..\lib\tiff.lib ..\..\lib\wxmsw.lib /nologo /subsystem:windows /machine:I386
+
+!ELSEIF "$(CFG)" == "accesstest - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W4 /Zi /Od /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /YX /FD /c
+# ADD CPP /nologo /MDd /W4 /Zi /Od /I "../../include" /I "..\..\lib\mswd" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D WINVER=0x400 /D "_MT" /D wxUSE_GUI=1 /D "__WXDEBUG__" /D WXDEBUG=1 /YX /FD /c
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD BASE RSC /l 0x409 /i "../../include" /d "_DEBUG"
+# ADD RSC /l 0x409 /i "../../include" /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 oleacc.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib comctl32.lib rpcrt4.lib wsock32.lib ..\..\lib\zlibd.lib ..\..\lib\regexd.lib ..\..\lib\pngd.lib ..\..\lib\jpegd.lib ..\..\lib\tiffd.lib ..\..\lib\wxmswd.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
+
+!ENDIF
+
+# Begin Target
+
+# Name "accesstest - Win32 Release DLL"
+# Name "accesstest - Win32 Debug DLL"
+# Name "accesstest - Win32 Release"
+# Name "accesstest - Win32 Debug"
+# Begin Source File
+
+SOURCE=.\accesstest.cpp
+# End Source File
+# Begin Source File
+
+SOURCE=.\accesstest.rc
+# End Source File
+# End Target
+# End Project
diff --git a/samples/access/accesstest.rc b/samples/access/accesstest.rc
new file mode 100644
index 0000000000..7655c62a4c
--- /dev/null
+++ b/samples/access/accesstest.rc
@@ -0,0 +1,3 @@
+mondrian ICON "mondrian.ico"
+#include "wx/msw/wx.rc"
+
diff --git a/samples/access/accesstestM5.xml b/samples/access/accesstestM5.xml
new file mode 100644
index 0000000000..bc929431cc
--- /dev/null
+++ b/samples/access/accesstestM5.xml
@@ -0,0 +1,3677 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]>
+
+
+
+ Classic Release
+
+
+
+ UserSourceTrees
+
+
+ CustomColor1
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor2
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor3
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor4
+ Red0
+ Green32767
+ Blue0
+
+
+
+ AlwaysSearchUserPathstrue
+ InterpretDOSAndUnixPathstrue
+ UserSearchPaths
+
+ SearchPath
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SearchPath
+ Path:::include:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivefalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path:::lib:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SystemSearchPaths
+
+ SearchPath
+ PathMSL
+ PathFormatWindows
+ PathRootCodeWarrior
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SearchPath
+ Path:MacOS Support:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ HostFlagsAll
+
+
+
+
+ LinkerMacOS PPC Linker
+ PreLinker
+ PostLinker
+ TargetnameClassic Release
+ OutputDirectory
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ SaveEntriesUsingRelativePathsfalse
+
+
+ FileMappings
+
+ FileTypeAPPL
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeAppl
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeMMLB
+ FileExtension
+ CompilerLib Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeMPLF
+ FileExtension
+ CompilerLib Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeMWCD
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeRSRC
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.c
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.c++
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cc
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cp
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cpp
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.exp
+ Compiler
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.h
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMaketrue
+
+
+ FileTypeTEXT
+ FileExtension.pch
+ CompilerMW C/C++ PPC
+ Precompiletrue
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.pch++
+ CompilerMW C/C++ PPC
+ Precompiletrue
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.r
+ CompilerRez
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeXCOF
+ FileExtension
+ CompilerXCOFF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypedocu
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypersrc
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeshlb
+ FileExtension
+ CompilerPEF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypestub
+ FileExtension
+ CompilerPEF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.doc
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFilefalse
+ IgnoredByMaketrue
+
+
+ FileExtension.o
+ CompilerXCOFF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.ppob
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileExtension.rsrc
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+
+
+ CacheModDatestrue
+ ActivateBrowsertrue
+ DumpBrowserInfofalse
+ CacheSubprojectstrue
+ UseThirdPartyDebuggerfalse
+ DebuggerCommandLine
+ Debugger Runtime
+ 0002000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 00000000000000000000000000000000
+
+
+
+ LogSystemMessagestrue
+ AutoTargetDLLsfalse
+ StopAtWatchpointstrue
+ PauseWhileRunningfalse
+ PauseInterval5
+ PauseUIFlags0
+ AltExePath
+ Path
+ PathFormatGeneric
+ PathRootAbsolute
+
+ StopAtTempBPOnLaunchtrue
+ CacheSymbolicstrue
+ TempBPFunctionNamemain
+ TempBPTypefalse
+
+
+ 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_mpwcnewline1
+ 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_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
+
+
+ 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
+
+
+ MWMerge_MacOS_projectTypeApplication
+ MWMerge_MacOS_outputNameMerge Out
+ MWMerge_MacOS_outputCreator1061109567
+ MWMerge_MacOS_outputType1095782476
+ MWMerge_MacOS_suppressWarning0
+ MWMerge_MacOS_copyFragments1
+ MWMerge_MacOS_copyResources1
+ MWMerge_MacOS_skipResources
+
+ ”Œ0
+ =ÃH
+ =Ø:
+
+
+
+ MWCodeGen_PPC_structalignmentPPC
+ 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_vectortocdata0
+ MWCodeGen_PPC_vrsave0
+
+
+ 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
+ PPC Mach-O CodeGen
+ 0001000001010000010000000001010101000000
+
+ PPC Mach-O Linker
+ 0001000000000100000100000000000000000000000000000000000000007374
+ 6172740000000000000000000000000000000000000000000000000000000000
+ 000000000000000000000000000000000000000000000000000000000000
+
+ PPC Mach-O Target
+ 0001000005612E6F757400000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 00000000
+
+
+
+ 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_outfileaccesstest Classic Release
+ MWProject_PPC_filecreator1061109567
+ MWProject_PPC_filetype1095782476
+ MWProject_PPC_size3840
+ MWProject_PPC_minsize3840
+ MWProject_PPC_stacksize64
+ MWProject_PPC_flags22720
+ MWProject_PPC_symfilename
+ MWProject_PPC_rsrcname
+ MWProject_PPC_rsrcheaderNative
+ MWProject_PPC_rsrctype1061109567
+ MWProject_PPC_rsrcid0
+ MWProject_PPC_rsrcflags0
+ MWProject_PPC_rsrcstore0
+ MWProject_PPC_rsrcmerge0
+
+
+ MWAssembler_PPC_auxheader0
+ MWAssembler_PPC_symmodeMac
+ MWAssembler_PPC_dialectPPC
+ MWAssembler_PPC_prefixfile
+ MWAssembler_PPC_typecheck0
+ MWAssembler_PPC_warnings0
+ MWAssembler_PPC_casesensitive0
+
+
+ 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'
+
+
+
+ Name
+ accesstest.cpp
+ MacOS
+ Text
+
+
+
+ Name
+ wx_PPC.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ MSL C++.PPC.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ MSL C.PPC.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ console.stubs.c
+ MacOS
+ Text
+
+
+
+ Name
+ MSL RuntimePPC.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ wx_PPC.rsrc
+ MacOS
+ Resource
+
+
+
+ Name
+ tiff.lib
+ MacOS
+ Library
+
+
+
+ Name
+ jpeg.lib
+ MacOS
+ Library
+
+
+
+ Name
+ png.lib
+ MacOS
+ Library
+
+
+
+ Name
+ zlib.lib
+ MacOS
+ Library
+
+
+
+ Name
+ AppearanceLib
+ MacOS
+ Library
+
+
+
+ Name
+ ATSUnicodeLib
+ MacOS
+ Library
+
+
+
+ Name
+ CarbonAccessors.o
+ MacOS
+ Library
+
+
+
+ Name
+ ControlsLib
+ MacOS
+ Library
+
+
+
+ Name
+ CursorDevicesGlue.o
+ MacOS
+ Library
+
+
+
+ Name
+ DialogsLib
+ MacOS
+ Library
+
+
+
+ Name
+ DragLib
+ MacOS
+ Library
+
+
+
+ Name
+ InterfaceLib
+ MacOS
+ Library
+
+
+
+ Name
+ InternetConfigLib
+ MacOS
+ Library
+
+
+
+ Name
+ WindowsLib
+ MacOS
+ Library
+
+
+
+ Name
+ MathLib
+ MacOS
+ Library
+
+
+
+ Name
+ MenusLib
+ MacOS
+ Library
+
+
+
+ Name
+ NavigationLib
+ MacOS
+ Library
+
+
+
+ Name
+ OpenTptAppleTalkLib
+ MacOS
+ Library
+
+
+
+ Name
+ OpenTptATalkPPC.o
+ MacOS
+ Library
+
+
+
+ Name
+ OpenTptInetPPC.o
+ MacOS
+ Library
+
+
+
+ Name
+ OpenTptInternetLib
+ MacOS
+ Library
+
+
+
+ Name
+ OpenTransportLib
+ MacOS
+ Library
+
+
+
+ Name
+ OpenTransportAppPPC.o
+ MacOS
+ Library
+
+
+
+ Name
+ PLStringFuncsPPC.lib
+ MacOS
+ Library
+
+
+
+ Name
+ TextEncodingConverter
+ MacOS
+ Library
+
+
+
+ Name
+ Textension
+ MacOS
+ Library
+
+
+
+ Name
+ ThreadsLib
+ MacOS
+ Library
+
+
+
+ Name
+ UnicodeConverter
+ MacOS
+ Library
+
+
+
+
+
+ Name
+ accesstest.cpp
+ MacOS
+
+
+ Name
+ wx_PPC.lib
+ MacOS
+
+
+ Name
+ MSL C++.PPC.Lib
+ MacOS
+
+
+ Name
+ MSL C.PPC.Lib
+ MacOS
+
+
+ Name
+ console.stubs.c
+ MacOS
+
+
+ Name
+ MSL RuntimePPC.Lib
+ MacOS
+
+
+ Name
+ wx_PPC.rsrc
+ MacOS
+
+
+ Name
+ tiff.lib
+ MacOS
+
+
+ Name
+ jpeg.lib
+ MacOS
+
+
+ Name
+ png.lib
+ MacOS
+
+
+ Name
+ zlib.lib
+ MacOS
+
+
+ Name
+ AppearanceLib
+ MacOS
+
+
+ Name
+ ATSUnicodeLib
+ MacOS
+
+
+ Name
+ CarbonAccessors.o
+ MacOS
+
+
+ Name
+ ControlsLib
+ MacOS
+
+
+ Name
+ CursorDevicesGlue.o
+ MacOS
+
+
+ Name
+ DialogsLib
+ MacOS
+
+
+ Name
+ DragLib
+ MacOS
+
+
+ Name
+ InterfaceLib
+ MacOS
+
+
+ Name
+ InternetConfigLib
+ MacOS
+
+
+ Name
+ WindowsLib
+ MacOS
+
+
+ Name
+ MathLib
+ MacOS
+
+
+ Name
+ MenusLib
+ MacOS
+
+
+ Name
+ NavigationLib
+ MacOS
+
+
+ Name
+ OpenTptAppleTalkLib
+ MacOS
+
+
+ Name
+ OpenTptATalkPPC.o
+ MacOS
+
+
+ Name
+ OpenTptInetPPC.o
+ MacOS
+
+
+ Name
+ OpenTptInternetLib
+ MacOS
+
+
+ Name
+ OpenTransportLib
+ MacOS
+
+
+ Name
+ OpenTransportAppPPC.o
+ MacOS
+
+
+ Name
+ PLStringFuncsPPC.lib
+ MacOS
+
+
+ Name
+ TextEncodingConverter
+ MacOS
+
+
+ Name
+ Textension
+ MacOS
+
+
+ Name
+ ThreadsLib
+ MacOS
+
+
+ Name
+ UnicodeConverter
+ MacOS
+
+
+
+
+ Classic Debug
+
+
+
+ UserSourceTrees
+
+
+ CustomColor1
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor2
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor3
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor4
+ Red0
+ Green32767
+ Blue0
+
+
+
+ AlwaysSearchUserPathstrue
+ InterpretDOSAndUnixPathstrue
+ UserSearchPaths
+
+ SearchPath
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SearchPath
+ Path:::include:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivefalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path:::lib:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SystemSearchPaths
+
+ SearchPath
+ PathMSL
+ PathFormatWindows
+ PathRootCodeWarrior
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SearchPath
+ Path:MacOS Support:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ HostFlagsAll
+
+
+
+
+ LinkerMacOS PPC Linker
+ PreLinker
+ PostLinker
+ TargetnameClassic Debug
+ OutputDirectory
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ SaveEntriesUsingRelativePathsfalse
+
+
+ FileMappings
+
+ FileTypeAPPL
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeAppl
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeMMLB
+ FileExtension
+ CompilerLib Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeMPLF
+ FileExtension
+ CompilerLib Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeMWCD
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeRSRC
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.c
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.c++
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cc
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cp
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cpp
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.exp
+ Compiler
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.h
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMaketrue
+
+
+ FileTypeTEXT
+ FileExtension.pch
+ CompilerMW C/C++ PPC
+ Precompiletrue
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.pch++
+ CompilerMW C/C++ PPC
+ Precompiletrue
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.r
+ CompilerRez
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeXCOF
+ FileExtension
+ CompilerXCOFF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypedocu
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypersrc
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeshlb
+ FileExtension
+ CompilerPEF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypestub
+ FileExtension
+ CompilerPEF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.doc
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFilefalse
+ IgnoredByMaketrue
+
+
+ FileExtension.o
+ CompilerXCOFF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.ppob
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileExtension.rsrc
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+
+
+ CacheModDatestrue
+ ActivateBrowsertrue
+ DumpBrowserInfofalse
+ CacheSubprojectstrue
+ UseThirdPartyDebuggerfalse
+ DebuggerCommandLine
+ Debugger Runtime
+ 0002000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 00000000000000000000000000000000
+
+
+
+ LogSystemMessagestrue
+ AutoTargetDLLsfalse
+ StopAtWatchpointstrue
+ PauseWhileRunningfalse
+ PauseInterval5
+ PauseUIFlags0
+ AltExePath
+ Path
+ PathFormatGeneric
+ PathRootAbsolute
+
+ StopAtTempBPOnLaunchtrue
+ CacheSymbolicstrue
+ TempBPFunctionNamemain
+ TempBPTypefalse
+
+
+ MWFrontEnd_C_cplusplus0
+ MWFrontEnd_C_checkprotos0
+ MWFrontEnd_C_arm0
+ MWFrontEnd_C_trigraphs0
+ MWFrontEnd_C_onlystdkeywords0
+ MWFrontEnd_C_enumsalwaysint0
+ MWFrontEnd_C_mpwpointerstyle0
+ MWFrontEnd_C_prefixname/wx/wx_cw_d.h
+ MWFrontEnd_C_ansistrict0
+ MWFrontEnd_C_mpwcnewline1
+ 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_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
+
+
+ MWWarning_C_warn_illpragma1
+ MWWarning_C_warn_emptydecl1
+ MWWarning_C_warn_possunwant1
+ 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_implicitconv1
+ MWWarning_C_warn_notinlined1
+ MWWarning_C_warn_structclass1
+
+
+ MWMerge_MacOS_projectTypeApplication
+ MWMerge_MacOS_outputNameMerge Out
+ MWMerge_MacOS_outputCreator1061109567
+ MWMerge_MacOS_outputType1095782476
+ MWMerge_MacOS_suppressWarning0
+ MWMerge_MacOS_copyFragments1
+ MWMerge_MacOS_copyResources1
+ MWMerge_MacOS_skipResources
+
+ ”Œ0
+ =ÃH
+ =Ø:
+
+
+
+ MWCodeGen_PPC_structalignmentPPC
+ MWCodeGen_PPC_tracebacktablesInline
+ 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_vectortocdata0
+ MWCodeGen_PPC_vrsave0
+
+
+ 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
+ PPC Mach-O CodeGen
+ 0001000001010000010000000001010101000000
+
+ PPC Mach-O Linker
+ 0001000000000100000100000000000000000000000000000000000000007374
+ 6172740000000000000000000000000000000000000000000000000000000000
+ 000000000000000000000000000000000000000000000000000000000000
+
+ PPC Mach-O Target
+ 0001000005612E6F757400000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 00000000
+
+
+
+ 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_outfileaccesstest Classic Debug
+ MWProject_PPC_filecreator1061109567
+ MWProject_PPC_filetype1095782476
+ MWProject_PPC_size3840
+ MWProject_PPC_minsize3840
+ MWProject_PPC_stacksize64
+ MWProject_PPC_flags22720
+ MWProject_PPC_symfilename
+ MWProject_PPC_rsrcname
+ MWProject_PPC_rsrcheaderNative
+ MWProject_PPC_rsrctype1061109567
+ MWProject_PPC_rsrcid0
+ MWProject_PPC_rsrcflags0
+ MWProject_PPC_rsrcstore0
+ MWProject_PPC_rsrcmerge0
+
+
+ MWAssembler_PPC_auxheader0
+ MWAssembler_PPC_symmodeMac
+ MWAssembler_PPC_dialectPPC
+ MWAssembler_PPC_prefixfile
+ MWAssembler_PPC_typecheck0
+ MWAssembler_PPC_warnings0
+ MWAssembler_PPC_casesensitive0
+
+
+ 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'
+
+
+
+ Name
+ MSL C++.PPC.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ MSL C.PPC.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ console.stubs.c
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ MSL RuntimePPC.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ wx_PPC_d.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ wx_PPC.rsrc
+ MacOS
+ Resource
+ Debug
+
+
+ Name
+ zlib.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ png.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ tiffd.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ jpeg.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ accesstest.cpp
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ AppearanceLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ ATSUnicodeLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ CarbonAccessors.o
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ ControlsLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ CursorDevicesGlue.o
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ DialogsLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ DragLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ InterfaceLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ InternetConfigLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ WindowsLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ MathLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ MenusLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ NavigationLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ OpenTptAppleTalkLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ OpenTptATalkPPC.o
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ OpenTptInetPPC.o
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ OpenTptInternetLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ OpenTransportLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ OpenTransportAppPPC.o
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ PLStringFuncsPPC.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ TextEncodingConverter
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ Textension
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ ThreadsLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ UnicodeConverter
+ MacOS
+ Library
+ Debug
+
+
+
+
+ Name
+ MSL C++.PPC.Lib
+ MacOS
+
+
+ Name
+ MSL C.PPC.Lib
+ MacOS
+
+
+ Name
+ console.stubs.c
+ MacOS
+
+
+ Name
+ MSL RuntimePPC.Lib
+ MacOS
+
+
+ Name
+ wx_PPC_d.lib
+ MacOS
+
+
+ Name
+ wx_PPC.rsrc
+ MacOS
+
+
+ Name
+ zlib.lib
+ MacOS
+
+
+ Name
+ png.lib
+ MacOS
+
+
+ Name
+ tiffd.lib
+ MacOS
+
+
+ Name
+ jpeg.lib
+ MacOS
+
+
+ Name
+ accesstest.cpp
+ MacOS
+
+
+ Name
+ AppearanceLib
+ MacOS
+
+
+ Name
+ ATSUnicodeLib
+ MacOS
+
+
+ Name
+ CarbonAccessors.o
+ MacOS
+
+
+ Name
+ ControlsLib
+ MacOS
+
+
+ Name
+ CursorDevicesGlue.o
+ MacOS
+
+
+ Name
+ DialogsLib
+ MacOS
+
+
+ Name
+ DragLib
+ MacOS
+
+
+ Name
+ InterfaceLib
+ MacOS
+
+
+ Name
+ InternetConfigLib
+ MacOS
+
+
+ Name
+ WindowsLib
+ MacOS
+
+
+ Name
+ MathLib
+ MacOS
+
+
+ Name
+ MenusLib
+ MacOS
+
+
+ Name
+ NavigationLib
+ MacOS
+
+
+ Name
+ OpenTptAppleTalkLib
+ MacOS
+
+
+ Name
+ OpenTptATalkPPC.o
+ MacOS
+
+
+ Name
+ OpenTptInetPPC.o
+ MacOS
+
+
+ Name
+ OpenTptInternetLib
+ MacOS
+
+
+ Name
+ OpenTransportLib
+ MacOS
+
+
+ Name
+ OpenTransportAppPPC.o
+ MacOS
+
+
+ Name
+ PLStringFuncsPPC.lib
+ MacOS
+
+
+ Name
+ TextEncodingConverter
+ MacOS
+
+
+ Name
+ Textension
+ MacOS
+
+
+ Name
+ ThreadsLib
+ MacOS
+
+
+ Name
+ UnicodeConverter
+ MacOS
+
+
+
+
+ Carbon Debug
+
+
+
+ UserSourceTrees
+
+
+ CustomColor1
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor2
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor3
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor4
+ Red0
+ Green32767
+ Blue0
+
+
+
+ AlwaysSearchUserPathstrue
+ InterpretDOSAndUnixPathstrue
+ UserSearchPaths
+
+ SearchPath
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SearchPath
+ Path:::include:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivefalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path:::lib:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SystemSearchPaths
+
+ SearchPath
+ PathMSL
+ PathFormatWindows
+ PathRootCodeWarrior
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SearchPath
+ Path:MacOS Support:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ HostFlagsAll
+
+
+
+
+ LinkerMacOS PPC Linker
+ PreLinker
+ PostLinker
+ TargetnameCarbon Debug
+ OutputDirectory
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ SaveEntriesUsingRelativePathsfalse
+
+
+ FileMappings
+
+ FileTypeAPPL
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeAppl
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeMMLB
+ FileExtension
+ CompilerLib Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeMPLF
+ FileExtension
+ CompilerLib Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeMWCD
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeRSRC
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.c
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.c++
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cc
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cp
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cpp
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.exp
+ Compiler
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.h
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMaketrue
+
+
+ FileTypeTEXT
+ FileExtension.pch
+ CompilerMW C/C++ PPC
+ Precompiletrue
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.pch++
+ CompilerMW C/C++ PPC
+ Precompiletrue
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.r
+ CompilerRez
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeXCOF
+ FileExtension
+ CompilerXCOFF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypedocu
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypersrc
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeshlb
+ FileExtension
+ CompilerPEF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypestub
+ FileExtension
+ CompilerPEF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.doc
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFilefalse
+ IgnoredByMaketrue
+
+
+ FileExtension.o
+ CompilerXCOFF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.ppob
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileExtension.rsrc
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+
+
+ CacheModDatestrue
+ ActivateBrowsertrue
+ DumpBrowserInfofalse
+ CacheSubprojectstrue
+ UseThirdPartyDebuggerfalse
+ DebuggerCommandLine
+ Debugger Runtime
+ 0002000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 00000000000000000000000000000000
+
+
+
+ LogSystemMessagestrue
+ AutoTargetDLLsfalse
+ StopAtWatchpointstrue
+ PauseWhileRunningfalse
+ PauseInterval5
+ PauseUIFlags0
+ AltExePath
+ Path
+ PathFormatGeneric
+ PathRootAbsolute
+
+ StopAtTempBPOnLaunchtrue
+ CacheSymbolicstrue
+ TempBPFunctionNamemain
+ TempBPTypefalse
+
+
+ MWFrontEnd_C_cplusplus0
+ MWFrontEnd_C_checkprotos0
+ MWFrontEnd_C_arm0
+ MWFrontEnd_C_trigraphs0
+ MWFrontEnd_C_onlystdkeywords0
+ MWFrontEnd_C_enumsalwaysint0
+ MWFrontEnd_C_mpwpointerstyle0
+ MWFrontEnd_C_prefixname/wx/wx_cwc_d.h
+ MWFrontEnd_C_ansistrict0
+ MWFrontEnd_C_mpwcnewline1
+ 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_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
+
+
+ MWWarning_C_warn_illpragma1
+ MWWarning_C_warn_emptydecl1
+ MWWarning_C_warn_possunwant1
+ 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_implicitconv1
+ MWWarning_C_warn_notinlined1
+ MWWarning_C_warn_structclass1
+
+
+ MWMerge_MacOS_projectTypeApplication
+ MWMerge_MacOS_outputNameMerge Out
+ MWMerge_MacOS_outputCreator1061109567
+ MWMerge_MacOS_outputType1095782476
+ MWMerge_MacOS_suppressWarning0
+ MWMerge_MacOS_copyFragments1
+ MWMerge_MacOS_copyResources1
+ MWMerge_MacOS_skipResources
+
+ ”Œ0
+ =ÃH
+ =Ø:
+
+
+
+ MWCodeGen_PPC_structalignmentPPC
+ MWCodeGen_PPC_tracebacktablesInline
+ 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_vectortocdata0
+ MWCodeGen_PPC_vrsave0
+
+
+ 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
+ PPC Mach-O CodeGen
+ 0001000001010000010000000001010101000000
+
+ PPC Mach-O Linker
+ 0001000000000100000100000000000000000000000000000000000000007374
+ 6172740000000000000000000000000000000000000000000000000000000000
+ 000000000000000000000000000000000000000000000000000000000000
+
+ PPC Mach-O Target
+ 0001000005612E6F757400000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 00000000
+
+
+
+ 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_outfileaccesstest Carbon Debug
+ MWProject_PPC_filecreator1061109567
+ MWProject_PPC_filetype1095782476
+ MWProject_PPC_size3840
+ MWProject_PPC_minsize3840
+ MWProject_PPC_stacksize64
+ MWProject_PPC_flags22720
+ MWProject_PPC_symfilename
+ MWProject_PPC_rsrcname
+ MWProject_PPC_rsrcheaderNative
+ MWProject_PPC_rsrctype1061109567
+ MWProject_PPC_rsrcid0
+ MWProject_PPC_rsrcflags0
+ MWProject_PPC_rsrcstore0
+ MWProject_PPC_rsrcmerge0
+
+
+ MWAssembler_PPC_auxheader0
+ MWAssembler_PPC_symmodeMac
+ MWAssembler_PPC_dialectPPC
+ MWAssembler_PPC_prefixfile
+ MWAssembler_PPC_typecheck0
+ MWAssembler_PPC_warnings0
+ MWAssembler_PPC_casesensitive0
+
+
+ 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'
+
+
+
+ Name
+ accesstest.cpp
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ MSL C++.PPC.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ console.stubs.c
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ MSL RuntimePPC.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ wx_CARBON_d.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ MSL C.CARBON.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ wx_CARBON.rsrc
+ MacOS
+ Resource
+ Debug
+
+
+ Name
+ tiffd.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ jpeg.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ png.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ zlib.lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ CarbonLib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ CarbonFrameworkLib
+ MacOS
+ Library
+ Debug
+
+
+
+
+ Name
+ accesstest.cpp
+ MacOS
+
+
+ Name
+ MSL C++.PPC.Lib
+ MacOS
+
+
+ Name
+ console.stubs.c
+ MacOS
+
+
+ Name
+ MSL RuntimePPC.Lib
+ MacOS
+
+
+ Name
+ wx_CARBON_d.lib
+ MacOS
+
+
+ Name
+ MSL C.CARBON.Lib
+ MacOS
+
+
+ Name
+ wx_CARBON.rsrc
+ MacOS
+
+
+ Name
+ tiffd.lib
+ MacOS
+
+
+ Name
+ jpeg.lib
+ MacOS
+
+
+ Name
+ png.lib
+ MacOS
+
+
+ Name
+ zlib.lib
+ MacOS
+
+
+ Name
+ CarbonLib
+ MacOS
+
+
+ Name
+ CarbonFrameworkLib
+ MacOS
+
+
+
+
+ Carbon Release
+
+
+
+ UserSourceTrees
+
+
+ CustomColor1
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor2
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor3
+ Red0
+ Green32767
+ Blue0
+
+ CustomColor4
+ Red0
+ Green32767
+ Blue0
+
+
+
+ AlwaysSearchUserPathstrue
+ InterpretDOSAndUnixPathstrue
+ UserSearchPaths
+
+ SearchPath
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SearchPath
+ Path:::include:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivefalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path:::lib:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SystemSearchPaths
+
+ SearchPath
+ PathMSL
+ PathFormatWindows
+ PathRootCodeWarrior
+
+ Recursivetrue
+ HostFlagsAll
+
+
+ SearchPath
+ Path:MacOS Support:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ HostFlagsAll
+
+
+
+
+ LinkerMacOS PPC Linker
+ PreLinker
+ PostLinker
+ TargetnameCarbon Release
+ OutputDirectory
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ SaveEntriesUsingRelativePathsfalse
+
+
+ FileMappings
+
+ FileTypeAPPL
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeAppl
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeMMLB
+ FileExtension
+ CompilerLib Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeMPLF
+ FileExtension
+ CompilerLib Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeMWCD
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeRSRC
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.c
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.c++
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cc
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cp
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.cpp
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.exp
+ Compiler
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.h
+ CompilerMW C/C++ PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMaketrue
+
+
+ FileTypeTEXT
+ FileExtension.pch
+ CompilerMW C/C++ PPC
+ Precompiletrue
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.pch++
+ CompilerMW C/C++ PPC
+ Precompiletrue
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.r
+ CompilerRez
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeXCOF
+ FileExtension
+ CompilerXCOFF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypedocu
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypersrc
+ FileExtension
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileTypeshlb
+ FileExtension
+ CompilerPEF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypestub
+ FileExtension
+ CompilerPEF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.doc
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFilefalse
+ IgnoredByMaketrue
+
+
+ FileExtension.o
+ CompilerXCOFF Import PPC
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.ppob
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+ FileExtension.rsrc
+ Compiler
+ Precompilefalse
+ Launchabletrue
+ ResourceFiletrue
+ IgnoredByMakefalse
+
+
+
+
+ CacheModDatestrue
+ ActivateBrowsertrue
+ DumpBrowserInfofalse
+ CacheSubprojectstrue
+ UseThirdPartyDebuggerfalse
+ DebuggerCommandLine
+ Debugger Runtime
+ 0002000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 00000000000000000000000000000000
+
+
+
+ LogSystemMessagestrue
+ AutoTargetDLLsfalse
+ StopAtWatchpointstrue
+ PauseWhileRunningfalse
+ PauseInterval5
+ PauseUIFlags0
+ AltExePath
+ Path
+ PathFormatGeneric
+ PathRootAbsolute
+
+ StopAtTempBPOnLaunchtrue
+ CacheSymbolicstrue
+ TempBPFunctionNamemain
+ TempBPTypefalse
+
+
+ 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_cwc.h
+ MWFrontEnd_C_ansistrict0
+ MWFrontEnd_C_mpwcnewline1
+ 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_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
+
+
+ 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
+
+
+ MWMerge_MacOS_projectTypeApplication
+ MWMerge_MacOS_outputNameMerge Out
+ MWMerge_MacOS_outputCreator1061109567
+ MWMerge_MacOS_outputType1095782476
+ MWMerge_MacOS_suppressWarning0
+ MWMerge_MacOS_copyFragments1
+ MWMerge_MacOS_copyResources1
+ MWMerge_MacOS_skipResources
+
+ ”Œ0
+ =ÃH
+ =Ø:
+
+
+
+ MWCodeGen_PPC_structalignmentPPC
+ 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_vectortocdata0
+ MWCodeGen_PPC_vrsave0
+
+
+ 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
+ PPC Mach-O CodeGen
+ 0001000001010000010000000001010101000000
+
+ PPC Mach-O Linker
+ 0001000000000100000100000000000000000000000000000000000000007374
+ 6172740000000000000000000000000000000000000000000000000000000000
+ 000000000000000000000000000000000000000000000000000000000000
+
+ PPC Mach-O Target
+ 0001000005612E6F757400000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 0000000000000000000000000000000000000000000000000000000000000000
+ 00000000
+
+
+
+ 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_outfileaccesstest Carbon Release
+ MWProject_PPC_filecreator1061109567
+ MWProject_PPC_filetype1095782476
+ MWProject_PPC_size3840
+ MWProject_PPC_minsize3840
+ MWProject_PPC_stacksize64
+ MWProject_PPC_flags22720
+ MWProject_PPC_symfilename
+ MWProject_PPC_rsrcname
+ MWProject_PPC_rsrcheaderNative
+ MWProject_PPC_rsrctype1061109567
+ MWProject_PPC_rsrcid0
+ MWProject_PPC_rsrcflags0
+ MWProject_PPC_rsrcstore0
+ MWProject_PPC_rsrcmerge0
+
+
+ MWAssembler_PPC_auxheader0
+ MWAssembler_PPC_symmodeMac
+ MWAssembler_PPC_dialectPPC
+ MWAssembler_PPC_prefixfile
+ MWAssembler_PPC_typecheck0
+ MWAssembler_PPC_warnings0
+ MWAssembler_PPC_casesensitive0
+
+
+ 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'
+
+
+
+ Name
+ accesstest.cpp
+ MacOS
+ Text
+
+
+
+ Name
+ MSL C++.PPC.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ console.stubs.c
+ MacOS
+ Text
+
+
+
+ Name
+ MSL RuntimePPC.Lib
+ MacOS
+ Library
+ Debug
+
+
+ Name
+ MSL C.CARBON.Lib
+ MacOS
+ Library
+
+
+
+ Name
+ wx_CARBON.lib
+ MacOS
+ Library
+
+
+
+ Name
+ wx_CARBON.rsrc
+ MacOS
+ Resource
+
+
+
+ Name
+ tiffd.lib
+ MacOS
+ Library
+
+
+
+ Name
+ jpeg.lib
+ MacOS
+ Library
+
+
+
+ Name
+ zlib.lib
+ MacOS
+ Library
+
+
+
+ Name
+ png.lib
+ MacOS
+ Library
+
+
+
+ Name
+ CarbonLib
+ MacOS
+ Library
+
+
+
+ Name
+ CarbonFrameworkLib
+ MacOS
+ Library
+
+
+
+
+
+ Name
+ accesstest.cpp
+ MacOS
+
+
+ Name
+ MSL C++.PPC.Lib
+ MacOS
+
+
+ Name
+ console.stubs.c
+ MacOS
+
+
+ Name
+ MSL RuntimePPC.Lib
+ MacOS
+
+
+ Name
+ MSL C.CARBON.Lib
+ MacOS
+
+
+ Name
+ wx_CARBON.lib
+ MacOS
+
+
+ Name
+ wx_CARBON.rsrc
+ MacOS
+
+
+ Name
+ tiffd.lib
+ MacOS
+
+
+ Name
+ jpeg.lib
+ MacOS
+
+
+ Name
+ zlib.lib
+ MacOS
+
+
+ Name
+ png.lib
+ MacOS
+
+
+ Name
+ CarbonLib
+ MacOS
+
+
+ Name
+ CarbonFrameworkLib
+ MacOS
+
+
+
+
+
+
+ Classic Release
+ Classic Debug
+ Carbon Debug
+ Carbon Release
+
+
+
+
+ Classic Release
+ Name
+ accesstest.cpp
+ MacOS
+
+ wx
+
+ Carbon Release
+ Name
+ wx_CARBON.lib
+ MacOS
+
+
+ Carbon Debug
+ Name
+ wx_CARBON_d.lib
+ MacOS
+
+
+ Carbon Debug
+ Name
+ wx_CARBON.rsrc
+ MacOS
+
+
+ Classic Release
+ Name
+ wx_PPC.lib
+ MacOS
+
+
+ Classic Debug
+ Name
+ wx_PPC_d.lib
+ MacOS
+
+
+ Classic Release
+ Name
+ wx_PPC.rsrc
+ MacOS
+
+
+ Classic Release
+ Name
+ tiff.lib
+ MacOS
+
+
+ Classic Release
+ Name
+ zlib.lib
+ MacOS
+
+
+ Classic Release
+ Name
+ png.lib
+ MacOS
+
+
+ Classic Debug
+ Name
+ tiffd.lib
+ MacOS
+
+
+ Classic Release
+ Name
+ jpeg.lib
+ MacOS
+
+
+ MSL ANSI Libraries
+
+ Classic Release
+ Name
+ console.stubs.c
+ MacOS
+
+
+ Classic Release
+ Name
+ MSL RuntimePPC.Lib
+ MacOS
+
+
+ Classic Release
+ Name
+ MSL C++.PPC.Lib
+ MacOS
+
+
+ Classic Release
+ Name
+ MSL C.PPC.Lib
+ MacOS
+
+
+ Carbon Debug
+ Name
+ MSL C.CARBON.Lib
+ MacOS
+
+
+ Win32 SDK
+
+ MacOS
+ Carbon
+
+ Carbon Debug
+ Name
+ CarbonLib
+ MacOS
+
+
+ Carbon Debug
+ Name
+ CarbonFrameworkLib
+ MacOS
+
+
+ Classic
+
+ Classic Release
+ Name
+ AppearanceLib
+ MacOS
+
+
+ Classic Release
+ Name
+ ATSUnicodeLib
+ MacOS
+
+
+ Classic Release
+ Name
+ CarbonAccessors.o
+ MacOS
+
+
+ Classic Release
+ Name
+ ControlsLib
+ MacOS
+
+
+ Classic Release
+ Name
+ CursorDevicesGlue.o
+ MacOS
+
+
+ Classic Release
+ Name
+ DialogsLib
+ MacOS
+
+
+ Classic Release
+ Name
+ DragLib
+ MacOS
+
+
+ Classic Release
+ Name
+ InterfaceLib
+ MacOS
+
+
+ Classic Release
+ Name
+ InternetConfigLib
+ MacOS
+
+
+ Classic Release
+ Name
+ WindowsLib
+ MacOS
+
+
+ Classic Release
+ Name
+ MathLib
+ MacOS
+
+
+ Classic Release
+ Name
+ MenusLib
+ MacOS
+
+
+ Classic Release
+ Name
+ NavigationLib
+ MacOS
+
+
+ Classic Release
+ Name
+ OpenTptAppleTalkLib
+ MacOS
+
+
+ Classic Release
+ Name
+ OpenTptATalkPPC.o
+ MacOS
+
+
+ Classic Release
+ Name
+ OpenTptInetPPC.o
+ MacOS
+
+
+ Classic Release
+ Name
+ OpenTptInternetLib
+ MacOS
+
+
+ Classic Release
+ Name
+ OpenTransportLib
+ MacOS
+
+
+ Classic Release
+ Name
+ OpenTransportAppPPC.o
+ MacOS
+
+
+ Classic Release
+ Name
+ PLStringFuncsPPC.lib
+ MacOS
+
+
+ Classic Release
+ Name
+ TextEncodingConverter
+ MacOS
+
+
+ Classic Release
+ Name
+ Textension
+ MacOS
+
+
+ Classic Release
+ Name
+ ThreadsLib
+ MacOS
+
+
+ Classic Release
+ Name
+ UnicodeConverter
+ MacOS
+
+
+
+
+
+
diff --git a/samples/access/accesstestW7.xml b/samples/access/accesstestW7.xml
new file mode 100644
index 0000000000..29d7cd75b2
--- /dev/null
+++ b/samples/access/accesstestW7.xml
@@ -0,0 +1,1968 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]>
+
+
+
+
+ wxWin App Release
+
+
+
+ UserSourceTrees
+
+
+ AlwaysSearchUserPathstrue
+ InterpretDOSAndUnixPathstrue
+ RequireFrameworkStyleIncludesfalse
+ UserSearchPaths
+
+ SearchPath
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivetrue
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SystemSearchPaths
+
+ SearchPath
+ Path:MSL:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path..\..\lib\cw7msw\include
+ PathFormatWindows
+ PathRootProject
+
+ Recursivefalse
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path..\..\include
+ PathFormatWindows
+ PathRootProject
+
+ Recursivefalse
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path..\..\lib
+ PathFormatWindows
+ PathRootProject
+
+ Recursivefalse
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path:Win32-x86 Support:Headers:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path:Win32-x86 Support:Libraries:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path:Win32-x86 Support:Headers:Win32 SDK:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+
+
+ MWRuntimeSettings_WorkingDirectory
+ MWRuntimeSettings_CommandLine
+ MWRuntimeSettings_HostApplication
+ Path
+ PathFormatGeneric
+ PathRootAbsolute
+
+ MWRuntimeSettings_EnvVars
+
+
+ LinkerWin32 x86 Linker
+ PreLinker
+ PostLinker
+ TargetnamewxWin App Release
+ OutputDirectory
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ SaveEntriesUsingRelativePathsfalse
+
+
+ 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.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.rc
+ CompilerMW WinRC
+ EditLanguage
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.res
+ CompilerWinRes Import
+ EditLanguage
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.doc
+ Compiler
+ EditLanguage
+ Precompilefalse
+ Launchabletrue
+ ResourceFilefalse
+ IgnoredByMaketrue
+
+
+ FileExtension.lib
+ CompilerLib Import x86
+ EditLanguage
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.obj
+ CompilerObj Import x86
+ 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_vectortocdata0
+ MWCodeGen_PPC_vrsave0
+
+
+ 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_intrinsics1
+ 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_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/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_inlinelevel0
+ MWFrontEnd_C_ecplusplus0
+ MWFrontEnd_C_objective_c0
+ MWFrontEnd_C_defer_codegen0
+
+
+ MWFTP_Post_hostName
+ MWFTP_Post_username
+ MWFTP_Post_password09
+ 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_TimeOut25
+ MWVJavaDebugging_SupportSlowDevicesfalse
+
+
+ MWJavaDoc_Proj_Version1
+ MWJavaDoc_Proj_Depricated1
+ 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_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_ftype542132570
+ MWJava_Output_fcreator1348097869
+ MWJava_Output_compress0
+ MWJava_Output_genManifest0
+ MWJava_Output_trunctypeFront
+ MWJava_Output_deleteClasses0
+ MWJava_Output_consoleApp1
+
+
+ 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_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
+ DLGX
+ ckid
+ Proj
+ WSPC
+
+
+
+ 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_outfileAppRelease.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__optimizationlevelLevel4
+ GlobalOptimizer_X86__optforSpeed
+
+
+
+ Name
+ MSL_All_x86.lib
+ Windows
+ Unknown
+ Debug
+
+
+ Name
+ COMDLG32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ GDI32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ KERNEL32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ USER32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ COMCTL32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ SHELL32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ OLE32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ UUID.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ wx_x86.lib
+ Windows
+ Library
+ Debug
+
+
+ Name
+ WINSPOOL.LIB
+ Windows
+ Library
+ Debug
+
+
+ Name
+ advapi32.lib
+ Windows
+ Library
+ Debug
+
+
+ Name
+ WSOCK32.LIB
+ Windows
+ Library
+ Debug
+
+
+ Name
+ rpcrt4.lib
+ Windows
+ Library
+ Debug
+
+
+ Name
+ odbc32.lib
+ Windows
+ Library
+ Debug
+
+
+ Name
+ accesstest.rc
+ Windows
+ Text
+ Debug
+
+
+ Name
+ accesstest.cpp
+ Windows
+ Text
+ Debug
+
+
+
+
+ Name
+ wx_x86.lib
+ Windows
+
+
+ Name
+ MSL_All_x86.lib
+ Windows
+
+
+ Name
+ COMDLG32.LIB
+ MacOS
+
+
+ Name
+ GDI32.LIB
+ MacOS
+
+
+ Name
+ KERNEL32.LIB
+ MacOS
+
+
+ Name
+ USER32.LIB
+ MacOS
+
+
+ Name
+ COMCTL32.LIB
+ MacOS
+
+
+ Name
+ SHELL32.LIB
+ MacOS
+
+
+ Name
+ OLE32.LIB
+ MacOS
+
+
+ Name
+ UUID.LIB
+ MacOS
+
+
+ Name
+ WINSPOOL.LIB
+ Windows
+
+
+ Name
+ advapi32.lib
+ Windows
+
+
+ Name
+ WSOCK32.LIB
+ Windows
+
+
+ Name
+ rpcrt4.lib
+ Windows
+
+
+ Name
+ odbc32.lib
+ Windows
+
+
+ Name
+ accesstest.rc
+ Windows
+
+
+ Name
+ accesstest.cpp
+ Windows
+
+
+
+
+ wxWin App Debug
+
+
+
+ UserSourceTrees
+
+
+ AlwaysSearchUserPathstrue
+ InterpretDOSAndUnixPathstrue
+ RequireFrameworkStyleIncludesfalse
+ UserSearchPaths
+
+ SearchPath
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ Recursivetrue
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SystemSearchPaths
+
+ SearchPath
+ Path:MSL:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path..\..\lib\cw7mswd\include
+ PathFormatWindows
+ PathRootProject
+
+ Recursivefalse
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path..\..\include
+ PathFormatWindows
+ PathRootProject
+
+ Recursivefalse
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path..\..\lib
+ PathFormatWindows
+ PathRootProject
+
+ Recursivefalse
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path:Win32-x86 Support:Headers:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path:Win32-x86 Support:Libraries:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+ SearchPath
+ Path:Win32-x86 Support:Headers:Win32 SDK:
+ PathFormatMacOS
+ PathRootCodeWarrior
+
+ Recursivetrue
+ FrameworkPathfalse
+ HostFlagsAll
+
+
+
+
+ MWRuntimeSettings_WorkingDirectory
+ MWRuntimeSettings_CommandLine
+ MWRuntimeSettings_HostApplication
+ Path
+ PathFormatGeneric
+ PathRootAbsolute
+
+ MWRuntimeSettings_EnvVars
+
+
+ LinkerWin32 x86 Linker
+ PreLinker
+ PostLinker
+ TargetnamewxWin App Debug
+ OutputDirectory
+ Path:
+ PathFormatMacOS
+ PathRootProject
+
+ SaveEntriesUsingRelativePathsfalse
+
+
+ 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.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.rc
+ CompilerMW WinRC
+ EditLanguage
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileTypeTEXT
+ FileExtension.res
+ CompilerWinRes Import
+ EditLanguage
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.doc
+ Compiler
+ EditLanguage
+ Precompilefalse
+ Launchabletrue
+ ResourceFilefalse
+ IgnoredByMaketrue
+
+
+ FileExtension.lib
+ CompilerLib Import x86
+ EditLanguage
+ Precompilefalse
+ Launchablefalse
+ ResourceFilefalse
+ IgnoredByMakefalse
+
+
+ FileExtension.obj
+ CompilerObj Import x86
+ 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_vectortocdata0
+ MWCodeGen_PPC_vrsave0
+
+
+ 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/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_inlinelevel0
+ MWFrontEnd_C_ecplusplus0
+ MWFrontEnd_C_objective_c0
+ MWFrontEnd_C_defer_codegen0
+
+
+ MWFTP_Post_hostName
+ MWFTP_Post_username
+ MWFTP_Post_password09ð
9@|ø
9@|ÿGDÎ
+ 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_TimeOut25
+ MWVJavaDebugging_SupportSlowDevicesfalse
+
+
+ MWJavaDoc_Proj_Version1
+ MWJavaDoc_Proj_Depricated1
+ 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_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_ftype542132570
+ MWJava_Output_fcreator1348097869
+ MWJava_Output_compress0
+ MWJava_Output_genManifest0
+ MWJava_Output_trunctypeFront
+ MWJava_Output_deleteClasses0
+ MWJava_Output_consoleApp1
+
+
+ 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_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
+ DLGX
+ ckid
+ Proj
+ WSPC
+
+
+
+ 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_outfileAppDebug.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
+ COMDLG32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ GDI32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ KERNEL32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ USER32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ COMCTL32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ SHELL32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ OLE32.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ UUID.LIB
+ MacOS
+ Text
+ Debug
+
+
+ Name
+ MSL_All_x86_D.lib
+ Windows
+ Unknown
+ Debug
+
+
+ Name
+ wx_x86_d.lib
+ MacOS
+ Unknown
+ Debug
+
+
+ Name
+ WINSPOOL.LIB
+ Windows
+ Library
+ Debug
+
+
+ Name
+ advapi32.lib
+ Windows
+ Library
+ Debug
+
+
+ Name
+ WSOCK32.LIB
+ Windows
+ Library
+ Debug
+
+
+ Name
+ rpcrt4.lib
+ Windows
+ Library
+ Debug
+
+
+ Name
+ odbc32.lib
+ Windows
+ Library
+ Debug
+
+
+ Name
+ accesstest.rc
+ Windows
+ Text
+ Debug
+
+
+ Name
+ accesstest.cpp
+ Windows
+ Text
+ Debug
+
+
+
+
+ Name
+ wx_x86_d.lib
+ MacOS
+
+
+ Name
+ MSL_All_x86_D.lib
+ Windows
+
+
+ Name
+ advapi32.lib
+ Windows
+
+
+ Name
+ COMDLG32.LIB
+ MacOS
+
+
+ Name
+ GDI32.LIB
+ MacOS
+
+
+ Name
+ KERNEL32.LIB
+ MacOS
+
+
+ Name
+ USER32.LIB
+ MacOS
+
+
+ Name
+ COMCTL32.LIB
+ MacOS
+
+
+ Name
+ SHELL32.LIB
+ MacOS
+
+
+ Name
+ OLE32.LIB
+ MacOS
+
+
+ Name
+ UUID.LIB
+ MacOS
+
+
+ Name
+ WINSPOOL.LIB
+ Windows
+
+
+ Name
+ WSOCK32.LIB
+ Windows
+
+
+ Name
+ rpcrt4.lib
+ Windows
+
+
+ Name
+ odbc32.lib
+ Windows
+
+
+ Name
+ accesstest.rc
+ Windows
+
+
+ Name
+ accesstest.cpp
+ Windows
+
+
+
+
+
+
+ wxWin App Debug
+ wxWin App Release
+
+
+
+ Source
+
+ wxWin App Release
+ Name
+ accesstest.rc
+ Windows
+
+
+ wxWin App Release
+ Name
+ accesstest.cpp
+ Windows
+
+
+ wx
+
+ wxWin App Release
+ Name
+ wx_x86.lib
+ Windows
+
+
+ wxWin App Debug
+ Name
+ wx_x86_d.lib
+ MacOS
+
+
+ MSL ANSI Libraries
+
+ wxWin App Release
+ Name
+ MSL_All_x86.lib
+ Windows
+
+
+ wxWin App Debug
+ Name
+ MSL_All_x86_D.lib
+ Windows
+
+
+ Win32 SDK
+
+ wxWin App Release
+ Name
+ advapi32.lib
+ Windows
+
+
+ wxWin App Release
+ Name
+ COMCTL32.LIB
+ MacOS
+
+
+ wxWin App Release
+ Name
+ COMDLG32.LIB
+ MacOS
+
+
+ wxWin App Release
+ Name
+ GDI32.LIB
+ MacOS
+
+
+ wxWin App Release
+ Name
+ KERNEL32.LIB
+ MacOS
+
+
+ wxWin App Release
+ Name
+ odbc32.lib
+ Windows
+
+
+ wxWin App Release
+ Name
+ OLE32.LIB
+ MacOS
+
+
+ wxWin App Release
+ Name
+ rpcrt4.lib
+ Windows
+
+
+ wxWin App Release
+ Name
+ SHELL32.LIB
+ MacOS
+
+
+ wxWin App Release
+ Name
+ USER32.LIB
+ MacOS
+
+
+ wxWin App Release
+ Name
+ UUID.LIB
+ MacOS
+
+
+ wxWin App Release
+ Name
+ WINSPOOL.LIB
+ Windows
+
+
+ wxWin App Release
+ Name
+ WSOCK32.LIB
+ Windows
+
+
+
+
+
diff --git a/samples/access/descrip.mms b/samples/access/descrip.mms
new file mode 100644
index 0000000000..98484734de
--- /dev/null
+++ b/samples/access/descrip.mms
@@ -0,0 +1,47 @@
+#*****************************************************************************
+# *
+# Make file for VMS *
+# Author : J.Jansen (joukj@hrem.stm.tudelft.nl) *
+# Date : 10 November 1999 *
+# *
+#*****************************************************************************
+.first
+ define wx [--.include.wx]
+
+.ifdef __WXMOTIF__
+CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
+ /assume=(nostdnew,noglobal_array_new)
+.else
+.ifdef __WXGTK__
+CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
+ /assume=(nostdnew,noglobal_array_new)
+.else
+CXX_DEFINE =
+.endif
+.endif
+
+.suffixes : .cpp
+
+.cpp.obj :
+ cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
+
+all :
+.ifdef __WXMOTIF__
+ $(MMS)$(MMSQUALIFIERS) accesstest.exe
+.else
+.ifdef __WXGTK__
+ $(MMS)$(MMSQUALIFIERS) accesstest_gtk.exe
+.endif
+.endif
+
+.ifdef __WXMOTIF__
+accesstest.exe : accesstest.obj
+ cxxlink accesstest,[--.lib]vms/opt
+.else
+.ifdef __WXGTK__
+accesstest_gtk.exe : accesstest.obj
+ cxxlink/exec=accesstest_gtk.exe accesstest,[--.lib]vms_gtk/opt
+.endif
+.endif
+
+accesstest.obj : accesstest.cpp
diff --git a/samples/access/makefile.b32 b/samples/access/makefile.b32
new file mode 100644
index 0000000000..c61cff65ed
--- /dev/null
+++ b/samples/access/makefile.b32
@@ -0,0 +1,16 @@
+#
+# File: makefile.b32
+# Author: Julian Smart
+# Created: 1999
+# Updated:
+# Copyright:
+#
+# Makefile : Builds sample for 32-bit BC++
+
+WXDIR = $(WXWIN)
+
+TARGET=accesstest
+OBJECTS = $(TARGET).obj
+
+!include $(WXDIR)\src\makeprog.b32
+
diff --git a/samples/access/makefile.dos b/samples/access/makefile.dos
new file mode 100644
index 0000000000..635e47fad7
--- /dev/null
+++ b/samples/access/makefile.dos
@@ -0,0 +1,17 @@
+#
+# File: makefile.dos
+# Author: Julian Smart
+# Created: 1998
+# Updated:
+#
+# Makefile : Builds 16-bit sample, VC++ 1.5
+# Use FINAL=1 argument to nmake to build final version with no debugging
+# info
+
+WXDIR = $(WXWIN)
+
+TARGET=accesstest
+OBJECTS=$(TARGET).obj
+
+!include $(WXDIR)\src\makeprog.msc
+
diff --git a/samples/access/makefile.g95 b/samples/access/makefile.g95
new file mode 100644
index 0000000000..a5fb6c3fb6
--- /dev/null
+++ b/samples/access/makefile.g95
@@ -0,0 +1,16 @@
+#
+# File: makefile.g95
+# Author: Julian Smart
+# Created: 1999
+# Updated:
+# Copyright: (c) Julian Smart, 1999
+#
+# Makefile for wxWindows sample (Cygwin/Mingw32).
+
+WXDIR = ../..
+
+TARGET=accesstest
+OBJECTS = $(TARGET).o
+
+include $(WXDIR)/src/makeprog.g95
+
diff --git a/samples/access/makefile.unx b/samples/access/makefile.unx
new file mode 100644
index 0000000000..d207d621ca
--- /dev/null
+++ b/samples/access/makefile.unx
@@ -0,0 +1,35 @@
+#
+# File: Makefile for samples
+# Author: Robert Roebling
+# Created: 1999
+# Updated:
+# Copyright: (c) 1998 Robert Roebling
+#
+# This makefile requires a Unix version of wxWindows
+# to be installed on your system. This is most often
+# done typing "make install" when using the complete
+# sources of wxWindows or by installing the two
+# RPM packages wxGTK.XXX.rpm and wxGTK-devel.XXX.rpm
+# under Linux.
+#
+
+CXX = $(shell wx-config --cxx)
+
+PROGRAM = accesstest
+
+OBJECTS = $(PROGRAM).o
+
+# implementation
+
+.SUFFIXES: .o .cpp
+
+.cpp.o :
+ $(CXX) -c `wx-config --cxxflags` -o $@ $<
+
+all: $(PROGRAM)
+
+$(PROGRAM): $(OBJECTS)
+ $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
+
+clean:
+ rm -f *.o $(PROGRAM)
diff --git a/samples/access/makefile.vc b/samples/access/makefile.vc
new file mode 100644
index 0000000000..61b109e5f7
--- /dev/null
+++ b/samples/access/makefile.vc
@@ -0,0 +1,24 @@
+#
+# File: makefile.vc
+# Author: Julian Smart
+# Created: 1999
+# Updated:
+# Copyright: (c) Julian Smart
+#
+# Makefile : Builds sample (VC++, WIN32)
+# Use FINAL=1 argument to nmake to build final version with no debug info.
+
+# Set WXDIR for your system
+WXDIR = $(WXWIN)
+
+PROGRAM=accesstest
+OBJECTS = $(PROGRAM).obj
+
+!include $(WXDIR)\src\makeprog.vc
+
+# For broken VC++ 4
+noopt:
+ cl @<<
+$(CPPFLAGS2) /Od /c /Tp $(PROGRAM).cpp
+<<
+
diff --git a/samples/access/makefile.wat b/samples/access/makefile.wat
new file mode 100644
index 0000000000..c1bcfb338e
--- /dev/null
+++ b/samples/access/makefile.wat
@@ -0,0 +1,15 @@
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+
+OUTPUTDIR = Watcom\
+
+PROGRAM = accesstest
+OBJECTS = $(OUTPUTDIR)$(PROGRAM).obj
+
+!include $(%WXWIN)\src\makeprog.wat
+
+
diff --git a/samples/access/mondrian.ico b/samples/access/mondrian.ico
new file mode 100644
index 0000000000..2310c5d275
Binary files /dev/null and b/samples/access/mondrian.ico differ
diff --git a/samples/access/mondrian.xpm b/samples/access/mondrian.xpm
new file mode 100644
index 0000000000..409f27a843
--- /dev/null
+++ b/samples/access/mondrian.xpm
@@ -0,0 +1,44 @@
+/* XPM */
+static char *mondrian_xpm[] = {
+/* columns rows colors chars-per-pixel */
+"32 32 6 1",
+" c Black",
+". c Blue",
+"X c #00bf00",
+"o c Red",
+"O c Yellow",
+"+ c Gray100",
+/* pixels */
+" ",
+" oooooo +++++++++++++++++++++++ ",
+" oooooo +++++++++++++++++++++++ ",
+" oooooo +++++++++++++++++++++++ ",
+" oooooo +++++++++++++++++++++++ ",
+" oooooo +++++++++++++++++++++++ ",
+" oooooo +++++++++++++++++++++++ ",
+" oooooo +++++++++++++++++++++++ ",
+" ",
+" ++++++ ++++++++++++++++++ .... ",
+" ++++++ ++++++++++++++++++ .... ",
+" ++++++ ++++++++++++++++++ .... ",
+" ++++++ ++++++++++++++++++ .... ",
+" ++++++ ++++++++++++++++++ .... ",
+" ++++++ ++++++++++++++++++ ",
+" ++++++ ++++++++++++++++++ ++++ ",
+" ++++++ ++++++++++++++++++ ++++ ",
+" ++++++ ++++++++++++++++++ ++++ ",
+" ++++++ ++++++++++++++++++ ++++ ",
+" ++++++ ++++++++++++++++++ ++++ ",
+" ++++++ ++++++++++++++++++ ++++ ",
+" ++++++ ++++++++++++++++++ ++++ ",
+" ++++++ ++++++++++++++++++ ++++ ",
+" ++++++ ++++++++++++++++++ ++++ ",
+" ++++++ ++++ ",
+" ++++++ OOOOOOOOOOOO XXXXX ++++ ",
+" ++++++ OOOOOOOOOOOO XXXXX ++++ ",
+" ++++++ OOOOOOOOOOOO XXXXX ++++ ",
+" ++++++ OOOOOOOOOOOO XXXXX ++++ ",
+" ++++++ OOOOOOOOOOOO XXXXX ++++ ",
+" ++++++ OOOOOOOOOOOO XXXXX ++++ ",
+" "
+};