diff --git a/contrib/samples/animate/makefile.wat b/contrib/samples/animate/makefile.wat
index de9f03d959..bbf34b15d6 100644
--- a/contrib/samples/animate/makefile.wat
+++ b/contrib/samples/animate/makefile.wat
@@ -6,9 +6,11 @@
#
WXDIR = $(%WXWIN)
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
PROGRAM = anitest
-OBJECTS = $(PROGRAM).obj animate.obj
+EXTRALIBS = $(WXDIR)\lib\anim_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/contrib/samples/gizmos/multicell/makefile.wat b/contrib/samples/gizmos/multicell/makefile.wat
index 64778d2b8f..e41249ecd5 100644
--- a/contrib/samples/gizmos/multicell/makefile.wat
+++ b/contrib/samples/gizmos/multicell/makefile.wat
@@ -3,9 +3,10 @@
WXDIR = $(%WXWIN)
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
PROGRAM = mtest
-OBJECTS = $(PROGRAM).obj ..\src\multicell.obj
-EXTRAINC=-I..\include
+EXTRALIBS = $(WXDIR)\lib\gizmos_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/contrib/samples/gizmos/splittree/makefile.wat b/contrib/samples/gizmos/splittree/makefile.wat
index 2b200ba7ec..afb5e6611b 100644
--- a/contrib/samples/gizmos/splittree/makefile.wat
+++ b/contrib/samples/gizmos/splittree/makefile.wat
@@ -1,14 +1,13 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
-#
-#
+# Purpose: makefile for multicell example (Watcom)
+# Created 2000-07-28
WXDIR = $(%WXWIN)
-PROGRAM = minimal
-OBJECTS = $(PROGRAM).obj
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
+
+PROGRAM = tree
+EXTRALIBS = $(WXDIR)\lib\gizmos_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/contrib/samples/mmedia/makefile.wat b/contrib/samples/mmedia/makefile.wat
index 39b2eb6cba..11fd2bb642 100644
--- a/contrib/samples/mmedia/makefile.wat
+++ b/contrib/samples/mmedia/makefile.wat
@@ -8,7 +8,7 @@
WXDIR = $(%WXWIN)
PROGRAM = mmboard
-OBJECTS = $(PROGRAM).obj mmbman.obj
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj mmbman.obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/contrib/samples/ogl/ogledit/makefile.wat b/contrib/samples/ogl/ogledit/makefile.wat
index 4d6b13097f..503e85ca36 100644
--- a/contrib/samples/ogl/ogledit/makefile.wat
+++ b/contrib/samples/ogl/ogledit/makefile.wat
@@ -7,9 +7,11 @@
WXDIR = $(%WXWIN)
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
+
PROGRAM = ogledit
-EXTRALIBS = $(WXDIR)\lib\ogl.lib
-OBJECTS = $(PROGRAM).obj doc.obj view.obj palette.obj
+EXTRALIBS = $(WXDIR)\lib\ogl_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj $(OUTPUTDIR)\doc.obj $(OUTPUTDIR)\view.obj $(OUTPUTDIR)\palette.obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/contrib/samples/ogl/studio/makefile.wat b/contrib/samples/ogl/studio/makefile.wat
index 70896d9437..62223f8927 100644
--- a/contrib/samples/ogl/studio/makefile.wat
+++ b/contrib/samples/ogl/studio/makefile.wat
@@ -7,10 +7,20 @@
WXDIR = $(%WXWIN)
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
+
PROGRAM = studio
-EXTRALIBS = $(WXDIR)\lib\ogl.lib
-OBJECTS = $(PROGRAM).obj doc.obj shapes.obj symbols.obj view.obj cspalette.obj &
- mainfrm.obj project.obj dialogs.obj csprint.obj
+EXTRALIBS = $(WXDIR)\lib\ogl_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj &
+ $(OUTPUTDIR)\doc.obj &
+ $(OUTPUTDIR)\shapes.obj &
+ $(OUTPUTDIR)\symbols.obj &
+ $(OUTPUTDIR)\view.obj &
+ $(OUTPUTDIR)\cspalette.obj &
+ $(OUTPUTDIR)\mainfrm.obj &
+ $(OUTPUTDIR)\project.obj &
+ $(OUTPUTDIR)\dialogs.obj &
+ $(OUTPUTDIR)\csprint.obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/contrib/samples/stc/makefile.wat b/contrib/samples/stc/makefile.wat
index 88dd113f02..6f4c80c81a 100644
--- a/contrib/samples/stc/makefile.wat
+++ b/contrib/samples/stc/makefile.wat
@@ -1,17 +1,13 @@
-#
-# Makefile for WATCOM
-#
+# Purpose: makefile for SVG example (Watcom)
+# Created 2000-07-28
-
-WXDIR = $(WXWIN)
+WXDIR = $(%WXWIN)
EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
-THISDIR = $(WXDIR)\contrib\samples\stc
-OUTPUTDIR = $(THISDIR)\
-
PROGRAM = stctest
-EXTRALIBS = $(WXDIR)\lib\stc.lib
-OBJECTS = $(PROGRAM).obj
+EXTRALIBS = $(WXDIR)\lib\stc_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
+
diff --git a/contrib/samples/svg/makefile.wat b/contrib/samples/svg/makefile.wat
index c21f84f740..ee8d0c0d6b 100644
--- a/contrib/samples/svg/makefile.wat
+++ b/contrib/samples/svg/makefile.wat
@@ -1,17 +1,13 @@
-#
-# Makefile for WATCOM
-#
-
+# Purpose: makefile for SVG example (Watcom)
+# Created 2000-07-28
WXDIR = $(%WXWIN)
EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
-THISDIR = $(WXDIR)\contrib\samples\svg
-OUTPUTDIR = $(THISDIR)\
-
PROGRAM = svgtest
-EXTRALIBS = $(WXDIR)\lib\svg.lib
-OBJECTS = $(PROGRAM).obj
+EXTRALIBS = $(WXDIR)\lib\svg_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
+
diff --git a/contrib/src/applet/makefile b/contrib/src/applet/makefile
index 69b6155c5c..f2e46d7a73 100644
--- a/contrib/src/applet/makefile
+++ b/contrib/src/applet/makefile
@@ -1,32 +1,27 @@
-#############################################################################
-#
-# Copyright (C) 1999 SciTech Software
-# All rights reserved.
-#
-# Descripton: Generic makefile for the SciTech wxApplet library
-#
-#############################################################################
+# Generated automatically from Makefile.in by configure.
+# $Id$
-# We are building with the Win32 version
+top_srcdir = ../../..
+top_builddir = ../../..
+libsrc_dir = contrib/src/applet
-USE_RTTI := 1
-USE_CPPEXCEPT := 1
-PRECOMP_HDR := wx/wxprec.h
-CFLAGS += -D__WIN95__ -D__WXMSW__ -D__WINDOWS__
+TARGET_LIBNAME=libwx_msw_applet-2.5
-# Link with wxWindows static link libraries or with the DLL. DLL is default.
+LIBVERSION_CURRENT=0
+LIBVERSION_REVISION=0
+LIBVERSION_AGE=0
-.IF $(STATIC_LINK)
-.ELSE
-CFLAGS += -DWXUSINGDLL
-.ENDIF
-# Define the library name and objects
+HEADER_PATH=$(top_srcdir)/contrib/include/wx
+HEADER_SUBDIR=applet
-LIBFILE = wxapplet$L
-LIBCLEAN = *.il? *.dll *.lib
-OBJECTS := applet$O appletwindow$O
+HEADERS=applet.h appletwindow.h
-DEPEND_OBJ = $(OBJECTS)
-.INCLUDE: "$(SCITECH)\makedefs\common.mk"
+OBJECTS=applet.o appletwindow.o
+DEPFILES=$(OBJECTS:.o=.d)
+APPEXTRADEFS=-I$(top_srcdir)/contrib/include
+
+include $(top_builddir)/src/makelib.env
+
+-include $(DEPFILES)
diff --git a/contrib/src/gizmos/makefile.wat b/contrib/src/gizmos/makefile.wat
index 7f46d51010..ab37621153 100644
--- a/contrib/src/gizmos/makefile.wat
+++ b/contrib/src/gizmos/makefile.wat
@@ -1,24 +1,17 @@
# Gizmos makefile for Watcom C++
-EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
WXDIR = ..\..\..
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
-!include $(WXDIR)\src\makewat.env
+LIBTARGET = $(WXDIR)\lib\gizmos_w.lib
-GIZMOSLIB = $(WXDIR)\lib\gizmos.lib
-THISDIR = $(WXDIR)\contrib\src\gizmos
-OUTPUTDIR = $(THISDIR)\
+OBJECTS = &
+ $(OUTPUTDIR)\multicell.obj &
+ $(OUTPUTDIR)\splittree.obj &
+ $(OUTPUTDIR)\editlbox.obj &
+ $(OUTPUTDIR)\dynamicsash.obj &
+ $(OUTPUTDIR)\ledctrl.obj
-NAME = gizmos
-LNK = $(name).lnk
+!include $(WXDIR)\src\makelib.wat
-OBJECTS = multicell.obj splittree.obj editlbox.obj dynamicsash.obj ledctrl.obj
-
-all: $(GIZMOSLIB) .SYMBOLIC
-
-$(GIZMOSLIB): $(OBJECTS)
- *wlib /b /c /n /P=256 $(GIZMOSLIB) $(OBJECTS)
-
-clean: .SYMBOLIC
- -erase *.obj *.bak *.err *.pch $(GIZMOSLIB) *.lbc
diff --git a/contrib/src/mmedia/makefile.wat b/contrib/src/mmedia/makefile.wat
index e5181dde55..a050126803 100644
--- a/contrib/src/mmedia/makefile.wat
+++ b/contrib/src/mmedia/makefile.wat
@@ -6,15 +6,33 @@
#
# Makefile : Builds MMedia library for Watcom C++, WIN32
-WXDIR = $(%WXWIN)
+!error This will not work - there is no digitalv.h in Open Watcom as of 26 Feb 03
-LIBTARGET=$(WXDIR)\contrib\lib\mmedia.lib
+WXDIR = ..\..\..
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
-OBJECTS = cdbase.obj cdwin.obj g711.obj g721.obj g723_24.obj &
- g723_40.obj g72x.obj sndaiff.obj sndbase.obj sndcodec.obj &
- sndcpcm.obj sndfile.obj sndg72x.obj sndpcm.obj sndulaw.obj &
- sndwav.obj sndwin.obj vidbase.obj vidwin.obj
+LIBTARGET=$(WXDIR)\lib\mmedia_w.lib
+
+OBJECTS = &
+ $(OUTPUTDIR)\cdbase.obj &
+ $(OUTPUTDIR)\cdwin.obj &
+ $(OUTPUTDIR)\g711.obj &
+ $(OUTPUTDIR)\g721.obj &
+ $(OUTPUTDIR)\g723_24.obj &
+ $(OUTPUTDIR)\g723_40.obj &
+ $(OUTPUTDIR)\g72x.obj &
+ $(OUTPUTDIR)\sndaiff.obj &
+ $(OUTPUTDIR)\sndbase.obj &
+ $(OUTPUTDIR)\sndcodec.obj &
+ $(OUTPUTDIR)\sndcpcm.obj &
+ $(OUTPUTDIR)\sndfile.obj &
+ $(OUTPUTDIR)\sndg72x.obj &
+ $(OUTPUTDIR)\sndpcm.obj &
+ $(OUTPUTDIR)\sndulaw.obj &
+ $(OUTPUTDIR)\sndwav.obj &
+ $(OUTPUTDIR)\sndwin.obj &
+ $(OUTPUTDIR)\vidbase.obj &
+ $(OUTPUTDIR)\vidwin.obj
!include $(WXDIR)\src\makelib.wat
-
diff --git a/contrib/src/ogl/makefile.wat b/contrib/src/ogl/makefile.wat
index 52779a1beb..6b361090e1 100644
--- a/contrib/src/ogl/makefile.wat
+++ b/contrib/src/ogl/makefile.wat
@@ -1,25 +1,24 @@
-# Objects makefile
+# OGL makefile
WXDIR = ..\..\..
EXTRACPPFLAGS=-I$(WXDIR)\contrib\include;/DPROLOGIO
-!include $(WXDIR)\src\makewat.env
+LIBTARGET= $(WXDIR)\lib\ogl_w.lib
-OGLLIB = $(WXDIR)\lib\ogl.lib
-THISDIR = $(WXDIR)\contrib\src\ogl
-OUTPUTDIR = $(THISDIR)\
+OBJECTS = &
+ $(OUTPUTDIR)\basic.obj &
+ $(OUTPUTDIR)\basic2.obj &
+ $(OUTPUTDIR)\canvas.obj &
+ $(OUTPUTDIR)\lines.obj &
+ $(OUTPUTDIR)\divided.obj &
+ $(OUTPUTDIR)\constrnt.obj &
+ $(OUTPUTDIR)\composit.obj &
+ $(OUTPUTDIR)\drawn.obj &
+ $(OUTPUTDIR)\bmpshape.obj &
+ $(OUTPUTDIR)\mfutils.obj &
+ $(OUTPUTDIR)\ogldiag.obj &
+ $(OUTPUTDIR)\oglmisc.obj
-NAME = ogl
-LNK = $(name).lnk
-OBJECTS = basic.obj basic2.obj canvas.obj lines.obj divided.obj constrnt.obj &
- composit.obj drawn.obj bmpshape.obj mfutils.obj ogldiag.obj oglmisc.obj
-
-all: $(OGLLIB) .SYMBOLIC
-
-$(OGLLIB): $(OBJECTS)
- *wlib /b /c /n /P=256 $(OGLLIB) $(OBJECTS)
-
-clean: .SYMBOLIC
- -erase *.obj *.bak *.err *.pch $(OGLLIB) *.lbc
+!include $(WXDIR)\src\makelib.wat
diff --git a/contrib/src/stc/makefile.wat b/contrib/src/stc/makefile.wat
index c9f3157bf8..6ef59ff7dd 100644
--- a/contrib/src/stc/makefile.wat
+++ b/contrib/src/stc/makefile.wat
@@ -10,7 +10,7 @@ EXTRACPPFLAGS = -I$(WXDIR)\contrib\include $(STCEXTRACPPFLAGS)
!include $(WXDIR)\src\makewat.env
-STCLIB = $(WXDIR)\lib\stc.lib
+STCLIB = $(WXDIR)\lib\stc_w.lib
THISDIR = $(WXDIR)\contrib\src\stc
OUTPUTDIR = $(THISDIR)\
diff --git a/contrib/src/svg/makefile.wat b/contrib/src/svg/makefile.wat
index c577af6bdc..956ce53c83 100644
--- a/contrib/src/svg/makefile.wat
+++ b/contrib/src/svg/makefile.wat
@@ -1,26 +1,13 @@
-# svg makefile for Watcom C++
+# SVG src makefile for Watcom C++
WXDIR = ..\..\..
EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
-!include $(WXDIR)\src\makewat.env
+LIBTARGET = $(WXDIR)\lib\svg_w.lib
-SVGLIB = $(WXDIR)\lib\svg.lib
-THISDIR = $(WXDIR)\contrib\src\svg
-OUTPUTDIR = $(THISDIR)\
+OBJECTS = &
+ $(OUTPUTDIR)\dcsvg.obj &
-NAME = svg
-LNK = $(name).lnk
-
-OBJECTS = dcsvg.obj
+!include $(WXDIR)\src\makelib.wat
-all: $(SVGLIB) .SYMBOLIC
-
-
-$(SVGLIB): $(OBJECTS)
- *wlib /b /c /n /P=256 $(SVGLIB) $(OBJECTS)
-
-clean: .SYMBOLIC
- -erase *.obj *.bak *.err *.pch $(SVGLIB) *.lbc
-
diff --git a/contrib/src/xrc/makefile.wat b/contrib/src/xrc/makefile.wat
index a2e3f6aa38..3d489d8aea 100644
--- a/contrib/src/xrc/makefile.wat
+++ b/contrib/src/xrc/makefile.wat
@@ -2,30 +2,51 @@
WXDIR = ..\..\..
-EXTRACPPFLAGS=/Id:\libxml\libxml2-2.1.1
+#XMLDIR=
+!error modify makefile.wat to include the path to the XML library
+
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include;-I$(XMLDIR)\libxml2-2.1.1
!include $(WXDIR)\src\makewat.env
-WXXMLLIB = $(WXDIR)\lib\wxxrc.lib
-THISDIR = $(WXDIR)\contrib\src\xrc
+LIBTARGET = $(WXDIR)\lib\wxxrc_w.lib
-NAME = wxxrc
-LNK = $(name).lnk
-
-OBJECTS=xml.obj xmlres.obj xmlrsall.obj &
- xh_bttn.obj xh_chckb.obj xh_chckl.obj xh_choic.obj xh_combo.obj xh_dlg.obj &
- xh_gauge.obj xh_html.obj xh_menu.obj xh_notbk.obj xh_panel.obj xh_radbt.obj &
- xh_radbx.obj xh_sizer.obj xh_slidr.obj xh_spin.obj xh_stbmp.obj xh_sttxt.obj &
- xh_text.obj xh_listb.obj xh_toolb.obj xh_stlin.obj xh_bmp.obj &
- xh_bmpbt.obj xh_cald.obj xh_listc.obj xh_scrol.obj xh_stbox.obj &
- xh_tree.obj xh_unkwn.obj xh_frame.obj xh_scwin.obj xh_split.obj
-
-
-all: $(WXXMLLIB)
-
-$(WXXMLLIB): $(OBJECTS)
- *wlib /b /c /n /P=256 $(WXXMLLIB) $(OBJECTS)
-
-clean: .SYMBOLIC
- -erase *.obj *.bak *.err *.pch $(WXXMLLIB) *.lbc
+OBJECTS=&
+ $(OUTPUTDIR)\xml.obj &
+ $(OUTPUTDIR)\xmlres.obj &
+ $(OUTPUTDIR)\xmlrsall.obj &
+ $(OUTPUTDIR)\xh_bttn.obj &
+ $(OUTPUTDIR)\xh_chckb.obj &
+ $(OUTPUTDIR)\xh_chckl.obj &
+ $(OUTPUTDIR)\xh_choic.obj &
+ $(OUTPUTDIR)\xh_combo.obj &
+ $(OUTPUTDIR)\xh_dlg.obj &
+ $(OUTPUTDIR)\xh_gauge.obj &
+ $(OUTPUTDIR)\xh_html.obj &
+ $(OUTPUTDIR)\xh_menu.obj &
+ $(OUTPUTDIR)\xh_notbk.obj &
+ $(OUTPUTDIR)\xh_panel.obj &
+ $(OUTPUTDIR)\xh_radbt.obj &
+ $(OUTPUTDIR)\xh_radbx.obj &
+ $(OUTPUTDIR)\xh_sizer.obj &
+ $(OUTPUTDIR)\xh_slidr.obj &
+ $(OUTPUTDIR)\xh_spin.obj &
+ $(OUTPUTDIR)\xh_stbmp.obj &
+ $(OUTPUTDIR)\xh_sttxt.obj &
+ $(OUTPUTDIR)\xh_text.obj &
+ $(OUTPUTDIR)\xh_listb.obj&
+ $(OUTPUTDIR)\xh_toolb.obj &
+ $(OUTPUTDIR)\xh_stlin.obj &
+ $(OUTPUTDIR)\xh_bmp.obj &
+ $(OUTPUTDIR)\xh_bmpbt.obj &
+ $(OUTPUTDIR)\xh_cald.obj &
+ $(OUTPUTDIR)\xh_listc.obj &
+ $(OUTPUTDIR)\xh_scrol.obj &
+ $(OUTPUTDIR)\xh_stbox.obj &
+ $(OUTPUTDIR)\xh_tree.obj &
+ $(OUTPUTDIR)\xh_unkwn.obj &
+ $(OUTPUTDIR)\xh_frame.obj &
+ $(OUTPUTDIR)\xh_scwin.obj &
+ $(OUTPUTDIR)\xh_split.obj
+!include $(WXDIR)\src\makelib.wat
diff --git a/contrib/utils/convertrc/makefile.wat b/contrib/utils/convertrc/makefile.wat
index 28de5d0935..e38579a344 100644
--- a/contrib/utils/convertrc/makefile.wat
+++ b/contrib/utils/convertrc/makefile.wat
@@ -4,10 +4,17 @@
#
WXDIR = $(%WXWIN)
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
+THISDIR = $(WXDIR)\contrib\utils\convertrc
PROGRAM = wxconvert
-EXTRALIBS = $(WXDIR)\lib\wxxrc.lib $(WXDIR)\lib\wxdeprecated.lib
-OBJECTS=convert.obj rc2xml.obj rc2wxr.obj wxr2xml.obj
+EXTRALIBS = $(WXDIR)\lib\wxxrc_w.lib $(WXDIR)\lib\wxdeprecated_w.lib
+OBJECTS=&
+ $(OUTPUTDIR)\convert.obj &
+ $(OUTPUTDIR)\rc2xml.obj &
+ $(OUTPUTDIR)\rc2wxr.obj &
+ $(OUTPUTDIR)\wxr2xml.obj
+
!include $(WXDIR)\src\makeprog.wat
diff --git a/contrib/utils/wxrc/makefile.wat b/contrib/utils/wxrc/makefile.wat
index 4a5d318872..ac1ff9c3fa 100644
--- a/contrib/utils/wxrc/makefile.wat
+++ b/contrib/utils/wxrc/makefile.wat
@@ -4,10 +4,12 @@
#
WXDIR = $(%WXWIN)
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
+THISDIR = $(WXDIR)\contrib\utils\wxrc
PROGRAM = wxrc
-EXTRALIBS = $(WXDIR)\lib\wxxrc.lib
-OBJECTS = $(PROGRAM).obj
+EXTRALIBS = $(WXDIR)\lib\wxxrc_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/contrib/utils/wxrcedit/makefile.wat b/contrib/utils/wxrcedit/makefile.wat
index 00a62ff36b..40d5f88bf9 100644
--- a/contrib/utils/wxrcedit/makefile.wat
+++ b/contrib/utils/wxrcedit/makefile.wat
@@ -4,10 +4,22 @@
#
WXDIR = $(%WXWIN)
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
+THISDIR = $(WXDIR)\contrib\utils\wxrcedit
PROGRAM = wxrcedit
-EXTRALIBS = $(WXDIR)\lib\wxxrc.lib
-OBJECTS=edapp.obj editor.obj nodehnd.obj xmlhelpr.obj preview.obj nodesdb.obj pe_basic.obj pe_adv.obj propedit.obj propframe.obj splittree.obj
+EXTRALIBS = $(WXDIR)\lib\wxxrc_w.lib
+OBJECTS=$(OUTPUTDIR)\edapp.obj &
+ $(OUTPUTDIR)\editor.obj &
+ $(OUTPUTDIR)\nodehnd.obj &
+ $(OUTPUTDIR)\xmlhelpr.obj &
+ $(OUTPUTDIR)\preview.obj &
+ $(OUTPUTDIR)\nodesdb.obj &
+ $(OUTPUTDIR)\pe_basic.obj &
+ $(OUTPUTDIR)\pe_adv.obj &
+ $(OUTPUTDIR)\propedit.obj &
+ $(OUTPUTDIR)\propframe.obj &
+ $(OUTPUTDIR)\splittree.obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/distrib/msw/tmake/wat.t b/distrib/msw/tmake/wat.t
index 2782c9ae5d..4248cb2689 100644
--- a/distrib/msw/tmake/wat.t
+++ b/distrib/msw/tmake/wat.t
@@ -5,6 +5,7 @@
#! Author: Vadim Zeitlin
#! Created: 14.07.99
#! Version: $Id$
+#! Changelist: 2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
#!#############################################################################
#${
#! include the code which parses filelist.txt file and initializes
@@ -90,6 +91,7 @@ GENERICOBJS= #$ ExpandGlue("WXGENERICOBJS", "\$(OUTPUTDIR)\\", " &\n\t\$(OUTPUTD
NONESSENTIALOBJS= #$ ExpandGlue("WXNONESSENTIALOBJS", "\$(OUTPUTDIR)\\", " &\n\t\$(OUTPUTDIR)\\")
COMMONOBJS = &
+ $(OUTPUTDIR)\y_tab.obj &
#$ ExpandGlue("WXCOMMONOBJS", "\$(OUTPUTDIR)\\", " &\n\t\$(OUTPUTDIR)\\")
MSWOBJS = #$ ExpandGlue("WXMSWOBJS", "\$(OUTPUTDIR)\\", " &\n\t\$(OUTPUTDIR)\\")
@@ -110,7 +112,8 @@ $(ARCHINCDIR)\wx:
$(OUTPUTDIR):
@if not exist $^@ mkdir $^@
-$(SETUP_H): $(WXDIR)\include\wx\msw\setup.h $(ARCHINCDIR)\wx
+$(SETUP_H): $(ARCHINCDIR)\wx
+ if not exist $(WXDIR)\include\wx\msw\setup.h copy $(WXDIR)\include\wx\msw\setup0.h $(WXDIR)\include\wx\msw\setup.h
copy $(WXDIR)\include\wx\msw\setup.h $@
LBCFILE=wx$(TOOLKIT).lbc
@@ -182,6 +185,15 @@ cleanall: clean
}
#$}
+$(OUTPUTDIR)\y_tab.obj: $(COMMDIR)\y_tab.c $(COMMDIR)\lex_yy.c
+ *$(CC) $(CFLAGS) -DUSE_DEFINE $(COMMDIR)\y_tab.c
+
+$(COMMDIR)\y_tab.c: $(COMMDIR)\dosyacc.c
+ copy $(COMMDIR)\dosyacc.c $(COMMDIR)\y_tab.c
+
+$(COMMDIR)\lex_yy.c: $(COMMDIR)\doslex.c
+ copy $(COMMDIR)\doslex.c $(COMMDIR)\lex_yy.c
+
########################################################
# Generic objects (not always compiled, depending on
# whether platforms have native implementations)
diff --git a/include/wx/msw/private.h b/include/wx/msw/private.h
index e02361c17e..f21b7a5d5b 100644
--- a/include/wx/msw/private.h
+++ b/include/wx/msw/private.h
@@ -398,6 +398,9 @@ private:
DECLARE_NO_COPY_CLASS(SelectInHDC)
};
+#ifdef __WATCOM__
+//FIXME why does watcom dislike this ?? CE 05 April 2003
+
// when working with global pointers (which is unfortunately still necessary
// sometimes, e.g. for clipboard) it is important to unlock them exactly as
// many times as we lock them which just asks for using a "smart lock" class
@@ -437,6 +440,7 @@ private:
DECLARE_NO_COPY_CLASS(GlobalHandle)
};
+#endif //__WATCOM__
// ---------------------------------------------------------------------------
// macros to make casting between WXFOO and FOO a bit easier: the GetFoo()
// returns Foo cast to the Windows type for oruselves, while GetFooOf() takes
diff --git a/samples/artprov/makefile.wat b/samples/artprov/makefile.wat
index af024efa8c..f1d21846fb 100644
--- a/samples/artprov/makefile.wat
+++ b/samples/artprov/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = arttest
-OBJECTS = $(PROGRAM).obj artbrows.obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = artprov
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/calendar/makefile.wat b/samples/calendar/makefile.wat
index 61ebd2d109..6ed88aeeeb 100644
--- a/samples/calendar/makefile.wat
+++ b/samples/calendar/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for calendar example (Watcom)
-# Created: 2000-01-03
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = calendar
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = calendar
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/caret/makefile.wat b/samples/caret/makefile.wat
index a234176792..29554aeea0 100644
--- a/samples/caret/makefile.wat
+++ b/samples/caret/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = caret
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = caret
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/checklst/makefile.wat b/samples/checklst/makefile.wat
index 1e219417b0..0b7e01e5f3 100644
--- a/samples/checklst/makefile.wat
+++ b/samples/checklst/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = checklst
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = checklst
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/config/makefile.wat b/samples/config/makefile.wat
index 5d7f4c3530..aa5a99960b 100644
--- a/samples/config/makefile.wat
+++ b/samples/config/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = conftest
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = config
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/console/makefile.wat b/samples/console/makefile.wat
index 6af511edf2..67638e4867 100644
--- a/samples/console/makefile.wat
+++ b/samples/console/makefile.wat
@@ -1,9 +1,13 @@
-wxUSE_GUI = 0
-OUTPUTDIR = Watcom\
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+wxUSE_GUI=0
+#
PROGRAM = console
-OBJECTS = $(OUTPUTDIR)$(PROGRAM).obj
-
-!include $(%WXWIN)\src\makeprog.wat
-
-
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/controls/makefile.wat b/samples/controls/makefile.wat
index db1d6cc5b6..59b1f66026 100644
--- a/samples/controls/makefile.wat
+++ b/samples/controls/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = controls
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = controls
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/db/makefile.wat b/samples/db/makefile.wat
index c3d0e8772d..361a80c00d 100644
--- a/samples/db/makefile.wat
+++ b/samples/db/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = dbtest
-OBJECTS = $(PROGRAM).obj listdb.obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = db
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/dialogs/makefile.wat b/samples/dialogs/makefile.wat
index f0d3b21081..0f2cc0625d 100644
--- a/samples/dialogs/makefile.wat
+++ b/samples/dialogs/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = dialogs
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = dialogs
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/dnd/makefile.wat b/samples/dnd/makefile.wat
index 1379a8bb3c..ded4659684 100644
--- a/samples/dnd/makefile.wat
+++ b/samples/dnd/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = dnd
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = dnd
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/docview/makefile.wat b/samples/docview/makefile.wat
index c701e12cc8..03444dab1d 100644
--- a/samples/docview/makefile.wat
+++ b/samples/docview/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = docview
-OBJECTS = $(PROGRAM).obj view.obj doc.obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = docview
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/docvwmdi/makefile.wat b/samples/docvwmdi/makefile.wat
index c701e12cc8..e06970673e 100644
--- a/samples/docvwmdi/makefile.wat
+++ b/samples/docvwmdi/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = docview
-OBJECTS = $(PROGRAM).obj view.obj doc.obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = docvwmdi
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/dragimag/makefile.wat b/samples/dragimag/makefile.wat
index 8be0d5aec8..d662867678 100644
--- a/samples/dragimag/makefile.wat
+++ b/samples/dragimag/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for dragimag example (Watcom)
-# Created: 2000-03-15
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = dragimag
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = dragimag
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/drawing/makefile.wat b/samples/drawing/makefile.wat
index 91a4751a5e..e1ccc4b117 100644
--- a/samples/drawing/makefile.wat
+++ b/samples/drawing/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = drawing
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = drawing
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/erase/makefile.wat b/samples/erase/makefile.wat
index 4a36a715be..ff0cf3baab 100644
--- a/samples/erase/makefile.wat
+++ b/samples/erase/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = erase
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = erase
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/event/makefile.wat b/samples/event/makefile.wat
index bdd01b8093..c5c56131fb 100644
--- a/samples/event/makefile.wat
+++ b/samples/event/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for event example (Watcom)
-# Created: 2001-01-31
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = event
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = event
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/exec/makefile.wat b/samples/exec/makefile.wat
index b81df8d74b..7a7f01dbb7 100644
--- a/samples/exec/makefile.wat
+++ b/samples/exec/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for exec example (Watcom)
-# Created: 2000-03-14
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = exec
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = exec
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/font/makefile.wat b/samples/font/makefile.wat
index 2668b9dc7f..085e6e463c 100644
--- a/samples/font/makefile.wat
+++ b/samples/font/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = font
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = font
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/grid/makefile.wat b/samples/grid/makefile.wat
index b13250e211..a9edce43dc 100644
--- a/samples/grid/makefile.wat
+++ b/samples/grid/makefile.wat
@@ -1,13 +1,12 @@
-#
-# Makefile for WATCOM
-#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = griddemo
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = grid
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/help/makefile.wat b/samples/help/makefile.wat
index 370b2fcc20..819ece5424 100644
--- a/samples/help/makefile.wat
+++ b/samples/help/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = demo
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = help
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/html/about/makefile.wat b/samples/html/about/makefile.wat
index 02018bbe57..1234ed9fe8 100644
--- a/samples/html/about/makefile.wat
+++ b/samples/html/about/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = about
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = about
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/html/help/makefile.wat b/samples/html/help/makefile.wat
index f49017db23..819ece5424 100644
--- a/samples/html/help/makefile.wat
+++ b/samples/html/help/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = help
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = help
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/html/helpview/makefile.wat b/samples/html/helpview/makefile.wat
index 89750a9cfb..48e3433b19 100644
--- a/samples/html/helpview/makefile.wat
+++ b/samples/html/helpview/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = helpview
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = helpview
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/html/printing/makefile.wat b/samples/html/printing/makefile.wat
index ebd7bff092..f1d9dfa721 100644
--- a/samples/html/printing/makefile.wat
+++ b/samples/html/printing/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = printing
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = printing
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/html/test/makefile.wat b/samples/html/test/makefile.wat
index 81a83e42a9..cb1a911ba7 100644
--- a/samples/html/test/makefile.wat
+++ b/samples/html/test/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = test
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = test
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/html/virtual/makefile.wat b/samples/html/virtual/makefile.wat
index c47938e66e..085e5a1daf 100644
--- a/samples/html/virtual/makefile.wat
+++ b/samples/html/virtual/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = virtual
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = virtual
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/html/widget/makefile.wat b/samples/html/widget/makefile.wat
index e8e59102d9..c5cb16d225 100644
--- a/samples/html/widget/makefile.wat
+++ b/samples/html/widget/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = widget
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = widget
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/html/zip/makefile.wat b/samples/html/zip/makefile.wat
index 5a52da2bb3..d71db45fa6 100644
--- a/samples/html/zip/makefile.wat
+++ b/samples/html/zip/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = zip
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = zip
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/image/makefile.wat b/samples/image/makefile.wat
index 3b6cb33829..b9c94c5374 100644
--- a/samples/image/makefile.wat
+++ b/samples/image/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = image
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = image
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/internat/makefile.wat b/samples/internat/makefile.wat
index 31181ee663..7929589dcb 100644
--- a/samples/internat/makefile.wat
+++ b/samples/internat/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = internat
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = internat
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/ipc/client.wat b/samples/ipc/client.wat
index 789db64157..010906f7e5 100644
--- a/samples/ipc/client.wat
+++ b/samples/ipc/client.wat
@@ -8,7 +8,7 @@
WXDIR = $(%WXWIN)
PROGRAM = client
-OBJECTS = $(PROGRAM).obj
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/samples/ipc/server.wat b/samples/ipc/server.wat
index 2acfdf1115..08496033ec 100644
--- a/samples/ipc/server.wat
+++ b/samples/ipc/server.wat
@@ -8,7 +8,7 @@
WXDIR = $(%WXWIN)
PROGRAM = server
-OBJECTS = $(PROGRAM).obj
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/samples/joytest/makefile.wat b/samples/joytest/makefile.wat
index 8d1fd19ea3..2b88823bcf 100644
--- a/samples/joytest/makefile.wat
+++ b/samples/joytest/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for joytest example (Watcom)
-# Created: 2000-03-14
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = joytest
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = joytest
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/keyboard/makefile.wat b/samples/keyboard/makefile.wat
index 1ccb77e514..e8f6d37e7b 100644
--- a/samples/keyboard/makefile.wat
+++ b/samples/keyboard/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = keyboard
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = keyboard
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/layout/makefile.wat b/samples/layout/makefile.wat
index a4b3f2e8f9..93b2ed28b8 100644
--- a/samples/layout/makefile.wat
+++ b/samples/layout/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = layout
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = layout
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/listctrl/makefile.wat b/samples/listctrl/makefile.wat
index 8edb3a5682..acd60f1311 100644
--- a/samples/listctrl/makefile.wat
+++ b/samples/listctrl/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = listtest
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = listtest
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/mdi/makefile.wat b/samples/mdi/makefile.wat
index 8df592246e..a997aacc27 100644
--- a/samples/mdi/makefile.wat
+++ b/samples/mdi/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = mdi
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = mdi
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/memcheck/makefile.wat b/samples/memcheck/makefile.wat
index abc4235cea..b8df352dfb 100644
--- a/samples/memcheck/makefile.wat
+++ b/samples/memcheck/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = memcheck
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = memcheck
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/menu/makefile.wat b/samples/menu/makefile.wat
index f8a70f9ad5..827af955ca 100644
--- a/samples/menu/makefile.wat
+++ b/samples/menu/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = menu
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = menu
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/mfc/makefile.wat b/samples/mfc/makefile.wat
index 965f13eb9a..4b53426173 100644
--- a/samples/mfc/makefile.wat
+++ b/samples/mfc/makefile.wat
@@ -1,47 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = ..\..
-
-!include $(WXDIR)\src\makewat.env
-
-WXLIB = $(WXDIR)\lib
-NAME = hello
-LNK = $(name).lnk
-OBJS = $(name).obj
-
-# Required for multi-threaded MFC apps
-EXTRACPPFLAGS = -bm -oaxt-zp4-ei-xs-zo-w3-bm-bt=nt -d_WINDOWS -d_MBCS
-refmain = _wstart2_
-
-
-PRECOMP=
-
-all: $(name).exe
-
-$(name).exe : $(OBJS) $(name).res $(LNK) $(WXLIB)\wx$(LEVEL).lib
- wlink @$(LNK)
- $(BINDCOMMAND) -d_MBCS $(name).res
-
-$(name).res : $(name).rc $(WXDIR)\include\msw\wx.rc
- $(RC) $(RESFLAGS1) $(name).rc
-
-$(LNK) : makefile.wat
- %create $(LNK)
- @%append $(LNK) debug all
- @%append $(LNK) system $(LINKOPTION)
- @%append $(LNK) $(MINDATA)
- @%append $(LNK) $(MAXDATA)
- @%append $(LNK) $(STACK)
- @%append $(LNK) name $(name)
- @%append $(LNK) file $(WXLIB)\wx$(LEVEL).lib
- @for %i in ($(EXTRALIBS)) do @%append $(LNK) file %i
- @for %i in ($(OBJS)) do @%append $(LNK) file %i
-
-clean: .SYMBOLIC
- -erase *.obj *.bak *.err *.pch *.lib *.lnk *.res *.exe *.rex
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = mfc
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/minifram/makefile.wat b/samples/minifram/makefile.wat
index 68110112c2..06a707a87e 100644
--- a/samples/minifram/makefile.wat
+++ b/samples/minifram/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for minifram example (Watcom)
-# Created: 2000-03-15
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = minifram
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = minifram
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/minimal/makefile.wat b/samples/minimal/makefile.wat
index 3c02c6467f..a7cc648a2b 100644
--- a/samples/minimal/makefile.wat
+++ b/samples/minimal/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-OUTPUTDIR = Watcom\
-
-PROGRAM = minimal
-OBJECTS = $(OUTPUTDIR)$(PROGRAM).obj
-
-!include $(%WXWIN)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = minimal
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/nativdlg/makefile.wat b/samples/nativdlg/makefile.wat
index 4cbb79e714..3d796268f7 100644
--- a/samples/nativdlg/makefile.wat
+++ b/samples/nativdlg/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = nativdlg
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = nativdlg
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/notebook/makefile.wat b/samples/notebook/makefile.wat
index d121835cc3..db4ec80c45 100644
--- a/samples/notebook/makefile.wat
+++ b/samples/notebook/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for notebook example (Watcom)
-# Created: 2000-03-15
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = notebook
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = notebook
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/oleauto/makefile.wat b/samples/oleauto/makefile.wat
index 994a25ce15..80c6d3a811 100644
--- a/samples/oleauto/makefile.wat
+++ b/samples/oleauto/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = oleauto
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = oleauto
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/ownerdrw/makefile.wat b/samples/ownerdrw/makefile.wat
index 4e6a3d8867..fa123061ef 100644
--- a/samples/ownerdrw/makefile.wat
+++ b/samples/ownerdrw/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = ownerdrw
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = ownerdrw
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/png/makefile.wat b/samples/png/makefile.wat
index 65bdeb731d..f3e275e8ae 100644
--- a/samples/png/makefile.wat
+++ b/samples/png/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = pngdemo
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = png
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/printing/makefile.wat b/samples/printing/makefile.wat
index ebd7bff092..f1d9dfa721 100644
--- a/samples/printing/makefile.wat
+++ b/samples/printing/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = printing
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = printing
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/propsize/makefile.wat b/samples/propsize/makefile.wat
index f2cfc53c1d..d54d2d6add 100644
--- a/samples/propsize/makefile.wat
+++ b/samples/propsize/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for propsize example (Watcom)
-# Created: 2000-03-14
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = propsize
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = propsize
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/regtest/makefile.wat b/samples/regtest/makefile.wat
index b673bbc73e..b4d5521d7d 100644
--- a/samples/regtest/makefile.wat
+++ b/samples/regtest/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = regtest
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = regtest
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/resource/makefile.wat b/samples/resource/makefile.wat
new file mode 100644
index 0000000000..1d277645e2
--- /dev/null
+++ b/samples/resource/makefile.wat
@@ -0,0 +1,12 @@
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = resource
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/rotate/makefile.wat b/samples/rotate/makefile.wat
index ca68b34968..079252b2e5 100644
--- a/samples/rotate/makefile.wat
+++ b/samples/rotate/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = rotate
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = rotate
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/sashtest/makefile.wat b/samples/sashtest/makefile.wat
index ddb80f3233..3ee0cf2705 100644
--- a/samples/sashtest/makefile.wat
+++ b/samples/sashtest/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for sashtest example (Watcom)
-# Created: 2000-03-14
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = sashtest
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = sashtest
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/scroll/makefile.wat b/samples/scroll/makefile.wat
index 1db3a07c59..98fcdd82cb 100644
--- a/samples/scroll/makefile.wat
+++ b/samples/scroll/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = scroll
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = scroll
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/scrollsub/makefile.wat b/samples/scrollsub/makefile.wat
index b64d0c9a09..c320844ae5 100644
--- a/samples/scrollsub/makefile.wat
+++ b/samples/scrollsub/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = scrollsub
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = scrollsub
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/sockets/client.wat b/samples/sockets/client.wat
index 789db64157..010906f7e5 100644
--- a/samples/sockets/client.wat
+++ b/samples/sockets/client.wat
@@ -8,7 +8,7 @@
WXDIR = $(%WXWIN)
PROGRAM = client
-OBJECTS = $(PROGRAM).obj
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/samples/sockets/server.wat b/samples/sockets/server.wat
index 2acfdf1115..08496033ec 100644
--- a/samples/sockets/server.wat
+++ b/samples/sockets/server.wat
@@ -8,7 +8,7 @@
WXDIR = $(%WXWIN)
PROGRAM = server
-OBJECTS = $(PROGRAM).obj
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
diff --git a/samples/splitter/makefile.wat b/samples/splitter/makefile.wat
index a923a2c3df..e90e0c5bf9 100644
--- a/samples/splitter/makefile.wat
+++ b/samples/splitter/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for splitter example (Watcom)
-# Created: 2000-03-15
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = splitter
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = splitter
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/statbar/makefile.wat b/samples/statbar/makefile.wat
index aa552730f8..6e74737fe4 100644
--- a/samples/statbar/makefile.wat
+++ b/samples/statbar/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for statbar example (Watcom)
-# Created: 2000-02-04
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = statbar
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = statbar
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/stc/makefile.wat b/samples/stc/makefile.wat
index 88dd113f02..6f4c80c81a 100644
--- a/samples/stc/makefile.wat
+++ b/samples/stc/makefile.wat
@@ -1,17 +1,13 @@
-#
-# Makefile for WATCOM
-#
+# Purpose: makefile for SVG example (Watcom)
+# Created 2000-07-28
-
-WXDIR = $(WXWIN)
+WXDIR = $(%WXWIN)
EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
-THISDIR = $(WXDIR)\contrib\samples\stc
-OUTPUTDIR = $(THISDIR)\
-
PROGRAM = stctest
-EXTRALIBS = $(WXDIR)\lib\stc.lib
-OBJECTS = $(PROGRAM).obj
+EXTRALIBS = $(WXDIR)\lib\stc_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
+
diff --git a/samples/svg/makefile.wat b/samples/svg/makefile.wat
index c21f84f740..ee8d0c0d6b 100644
--- a/samples/svg/makefile.wat
+++ b/samples/svg/makefile.wat
@@ -1,17 +1,13 @@
-#
-# Makefile for WATCOM
-#
-
+# Purpose: makefile for SVG example (Watcom)
+# Created 2000-07-28
WXDIR = $(%WXWIN)
EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
-THISDIR = $(WXDIR)\contrib\samples\svg
-OUTPUTDIR = $(THISDIR)\
-
PROGRAM = svgtest
-EXTRALIBS = $(WXDIR)\lib\svg.lib
-OBJECTS = $(PROGRAM).obj
+EXTRALIBS = $(WXDIR)\lib\svg_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat
+
diff --git a/samples/tab/makefile.wat b/samples/tab/makefile.wat
index cab5746fd5..dc155c32f3 100644
--- a/samples/tab/makefile.wat
+++ b/samples/tab/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for tab example (Watcom)
-# Created: 2000-03-15
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = tab
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = tab
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/taskbar/makefile.wat b/samples/taskbar/makefile.wat
index 9c96500280..ed30288083 100644
--- a/samples/taskbar/makefile.wat
+++ b/samples/taskbar/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = tbtest
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = taskbar
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/text/makefile.wat b/samples/text/makefile.wat
index 6ba2275933..96cd8516a7 100644
--- a/samples/text/makefile.wat
+++ b/samples/text/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = text
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = text
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/thread/makefile.wat b/samples/thread/makefile.wat
index d5741fd111..7145fd7188 100644
--- a/samples/thread/makefile.wat
+++ b/samples/thread/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for thread example (Watcom)
-# Created: 2000-03-15
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = thread
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = thread
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/toolbar/makefile.wat b/samples/toolbar/makefile.wat
index 95c26443ed..89fefeb0fc 100644
--- a/samples/toolbar/makefile.wat
+++ b/samples/toolbar/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for toolbar example (Watcom)
-# Created: 2000-03-14
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = toolbar
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = toolbar
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/treectrl/makefile.wat b/samples/treectrl/makefile.wat
index 5125f13c6b..4b9af1cdf8 100644
--- a/samples/treectrl/makefile.wat
+++ b/samples/treectrl/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for treectrl example (Watcom)
-# Created: 2000-03-15
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = treetest
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = treetest
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/typetest/makefile.wat b/samples/typetest/makefile.wat
index 8efc4d6a0c..d5d01b893d 100644
--- a/samples/typetest/makefile.wat
+++ b/samples/typetest/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for typetest example (Watcom)
-# Created: 2000-03-14
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = typetest
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = typetest
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/validate/makefile.wat b/samples/validate/makefile.wat
index 94a59068a1..ba7088ba90 100644
--- a/samples/validate/makefile.wat
+++ b/samples/validate/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for validate example (Watcom)
-# Created: 2000-03-14
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = validate
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = validate
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/widgets/makefile.wat b/samples/widgets/makefile.wat
index 282c5077ef..68f899756b 100644
--- a/samples/widgets/makefile.wat
+++ b/samples/widgets/makefile.wat
@@ -1,15 +1,12 @@
-#
-# Makefile for WATCOM
-#
-# Created by Julian Smart, January 1999
#
-#
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = widgets
-OBJECTS = $(PROGRAM).obj button.obj combobox.obj gauge.obj listbox.obj notebook.obj radiobox.obj slider.obj spinbtn.obj static.obj textctrl.obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = widgets
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/samples/wizard/makefile.wat b/samples/wizard/makefile.wat
index b281b5eb48..c560384ad1 100644
--- a/samples/wizard/makefile.wat
+++ b/samples/wizard/makefile.wat
@@ -1,11 +1,12 @@
-# Purpose: makefile for wizard example (Watcom)
-# Created: 2000-03-15
-
-WXDIR = $(%WXWIN)
-
-PROGRAM = wizard
-OBJECTS = $(PROGRAM).obj
-
-!include $(WXDIR)\src\makeprog.wat
-
-
+#
+# Makefile for WATCOM
+#
+# Created by Julian Smart, January 1999
+#
+#
+#
+#
+PROGRAM = wizard
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
+#
+!include $(%WXWIN)\src\makeprog.wat
diff --git a/src/jpeg/makefile.wat b/src/jpeg/makefile.wat
index 3081493a7a..88ed70b0c4 100644
--- a/src/jpeg/makefile.wat
+++ b/src/jpeg/makefile.wat
@@ -3,6 +3,7 @@
# File: makefile.wat
# Author: Julian Smart
# Created: 1998
+# Changelist: 2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
#
# Makefile : Builds JPEG library for Watcom C++, WIN32
@@ -17,58 +18,58 @@ LIBTARGET = $(WXLIB)\jpeg$(WATCOM_SUFFIX).lib
# library object files common to compression and decompression
COMOBJECTS = &
- $(OUTPUTDIR)jcomapi.obj &
- $(OUTPUTDIR)jutils.obj &
- $(OUTPUTDIR)jerror.obj &
- $(OUTPUTDIR)jmemmgr.obj &
- $(OUTPUTDIR)jmemnobs.obj
+ $(OUTPUTDIR)\jcomapi.obj &
+ $(OUTPUTDIR)\jutils.obj &
+ $(OUTPUTDIR)\jerror.obj &
+ $(OUTPUTDIR)\jmemmgr.obj &
+ $(OUTPUTDIR)\jmemnobs.obj
# compression library object files
CLIBOBJECTS = &
- $(OUTPUTDIR)jcapimin.obj &
- $(OUTPUTDIR)jcapistd.obj &
- $(OUTPUTDIR)jctrans.obj &
- $(OUTPUTDIR)jcparam.obj &
- $(OUTPUTDIR)jdatadst.obj &
- $(OUTPUTDIR)jcinit.obj &
- $(OUTPUTDIR)jcmaster.obj &
- $(OUTPUTDIR)jcmarker.obj &
- $(OUTPUTDIR)jcmainct.obj &
- $(OUTPUTDIR)jcprepct.obj &
- $(OUTPUTDIR)jccoefct.obj &
- $(OUTPUTDIR)jccolor.obj &
- $(OUTPUTDIR)jcsample.obj &
- $(OUTPUTDIR)jchuff.obj &
- $(OUTPUTDIR)jcphuff.obj &
- $(OUTPUTDIR)jcdctmgr.obj &
- $(OUTPUTDIR)jfdctfst.obj &
- $(OUTPUTDIR)jfdctflt.obj &
- $(OUTPUTDIR)jfdctint.obj
+ $(OUTPUTDIR)\jcapimin.obj &
+ $(OUTPUTDIR)\jcapistd.obj &
+ $(OUTPUTDIR)\jctrans.obj &
+ $(OUTPUTDIR)\jcparam.obj &
+ $(OUTPUTDIR)\jdatadst.obj &
+ $(OUTPUTDIR)\jcinit.obj &
+ $(OUTPUTDIR)\jcmaster.obj &
+ $(OUTPUTDIR)\jcmarker.obj &
+ $(OUTPUTDIR)\jcmainct.obj &
+ $(OUTPUTDIR)\jcprepct.obj &
+ $(OUTPUTDIR)\jccoefct.obj &
+ $(OUTPUTDIR)\jccolor.obj &
+ $(OUTPUTDIR)\jcsample.obj &
+ $(OUTPUTDIR)\jchuff.obj &
+ $(OUTPUTDIR)\jcphuff.obj &
+ $(OUTPUTDIR)\jcdctmgr.obj &
+ $(OUTPUTDIR)\jfdctfst.obj &
+ $(OUTPUTDIR)\jfdctflt.obj &
+ $(OUTPUTDIR)\jfdctint.obj
# decompression library object files
DLIBOBJECTS = &
- $(OUTPUTDIR)jdapimin.obj &
- $(OUTPUTDIR)jdapistd.obj &
- $(OUTPUTDIR)jdtrans.obj &
- $(OUTPUTDIR)jdatasrc.obj &
- $(OUTPUTDIR)jdmaster.obj &
- $(OUTPUTDIR)jdinput.obj &
- $(OUTPUTDIR)jdmarker.obj &
- $(OUTPUTDIR)jdhuff.obj &
- $(OUTPUTDIR)jdphuff.obj &
- $(OUTPUTDIR)jdmainct.obj &
- $(OUTPUTDIR)jdcoefct.obj &
- $(OUTPUTDIR)jdpostct.obj &
- $(OUTPUTDIR)jddctmgr.obj &
- $(OUTPUTDIR)jidctfst.obj &
- $(OUTPUTDIR)jidctflt.obj &
- $(OUTPUTDIR)jidctint.obj &
- $(OUTPUTDIR)jidctred.obj &
- $(OUTPUTDIR)jdsample.obj &
- $(OUTPUTDIR)jdcolor.obj &
- $(OUTPUTDIR)jquant1.obj &
- $(OUTPUTDIR)jquant2.obj &
- $(OUTPUTDIR)jdmerge.obj
+ $(OUTPUTDIR)\jdapimin.obj &
+ $(OUTPUTDIR)\jdapistd.obj &
+ $(OUTPUTDIR)\jdtrans.obj &
+ $(OUTPUTDIR)\jdatasrc.obj &
+ $(OUTPUTDIR)\jdmaster.obj &
+ $(OUTPUTDIR)\jdinput.obj &
+ $(OUTPUTDIR)\jdmarker.obj &
+ $(OUTPUTDIR)\jdhuff.obj &
+ $(OUTPUTDIR)\jdphuff.obj &
+ $(OUTPUTDIR)\jdmainct.obj &
+ $(OUTPUTDIR)\jdcoefct.obj &
+ $(OUTPUTDIR)\jdpostct.obj &
+ $(OUTPUTDIR)\jddctmgr.obj &
+ $(OUTPUTDIR)\jidctfst.obj &
+ $(OUTPUTDIR)\jidctflt.obj &
+ $(OUTPUTDIR)\jidctint.obj &
+ $(OUTPUTDIR)\jidctred.obj &
+ $(OUTPUTDIR)\jdsample.obj &
+ $(OUTPUTDIR)\jdcolor.obj &
+ $(OUTPUTDIR)\jquant1.obj &
+ $(OUTPUTDIR)\jquant2.obj &
+ $(OUTPUTDIR)\jdmerge.obj
# These objectfiles are included in libjpeg.lib
OBJECTS = $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
@@ -78,18 +79,18 @@ all: $(OUTPUTDIR) $(LIBTARGET) .SYMBOLIC
$(OUTPUTDIR):
@if not exist $^@ mkdir $^@
-LBCFILE=$(OUTPUTDIR)jpeg.lbc
+LBCFILE=$(OUTPUTDIR)\jpeg.lbc
$(LIBTARGET) : $(OBJECTS)
%create $(LBCFILE)
@for %i in ( $(OBJECTS) ) do @%append $(LBCFILE) +%i
wlib /q /b /c /n /p=512 $^@ @$(LBCFILE)
clean: .SYMBOLIC
- -erase $(OUTPUTDIR)*.obj
+ -erase $(OUTPUTDIR)\*.obj
-erase $(LIBTARGET)
- -erase $(OUTPUTDIR)*.pch
- -erase $(OUTPUTDIR)*.err
- -erase $(OUTPUTDIR)*.lbc
+ -erase $(OUTPUTDIR)\*.pch
+ -erase $(OUTPUTDIR)\*.err
+ -erase $(OUTPUTDIR)\*.lbc
cleanall: clean
diff --git a/src/makelib.wat b/src/makelib.wat
index 717bd5e83c..3390cb6ff2 100644
--- a/src/makelib.wat
+++ b/src/makelib.wat
@@ -1,26 +1,57 @@
+#
+# Changelist: 2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
+#
+
+<<<<<<< makelib.wat
+THISDIR = $+ $(%cdrive):$(%cwd) $-
+# set OUTPUTDIR to the directory to be used for the .obj files created during
+# the build (under $THISDIR)
+!ifndef OUTPUTDIR
+OUTPUTDIR=$(THISDIR)\$(BASEDIRPREFIX)$(CONFIGURATION)Watcom
+# no trailing slash for win98
+!endif
+
+=======
+OUTPUTDIR= $+ $(%cdrive):$(%cwd)\WATCOM $-
+
+>>>>>>> 1.1.8.2
!include $(WXDIR)\src\makewat.env
+<<<<<<< makelib.wat
-all: $(OUTPUTDIR) $(LIBTARGET)
+all: $(OUTPUTDIR) $(LIBTARGET) .SYMBOLIC
+=======
+>>>>>>> 1.1.8.2
+
+<<<<<<< makelib.wat
$(OUTPUTDIR):
@if not exist $^@ mkdir $^@
+=======
+all: MAKDIR $(LIBTARGET) .SYMBOLIC
+>>>>>>> 1.1.8.2
+<<<<<<< makelib.wat
+=======
+MAKDIR: .SYMBOLIC
+ @if not exist $(OUTPUTDIR) mkdir $(OUTPUTDIR)
+
+>>>>>>> 1.1.8.2
# the name of the file containing the objects to be put in the library
-LBCFILE=$(OUTPUTDIR)$(LIBTARGET).lbc
+LBCFILE=$(LIBTARGET).lbc
$(LIBTARGET) : $(OBJECTS)
%create $(LBCFILE)
@for %i in ( $(OBJECTS) ) do @%append $(LBCFILE) +%i
$(LIB) /b /c /n /p=512 $^@ @$(LBCFILE)
clean: .SYMBOLIC
- -erase $(OUTPUTDIR)*.obj
- -erase $(OUTPUTDIR)*.bak
- -erase $(OUTPUTDIR)*.err
- -erase $(OUTPUTDIR)*.pch
- -erase $(OUTPUTDIR)*.lib
- -erase $(OUTPUTDIR)*.lbc
- -erase $(OUTPUTDIR)*.res
- -erase $(OUTPUTDIR)*.exe
- -erase $(OUTPUTDIR)*.lbc
+ -erase $(OUTPUTDIR)\*.obj
+ -erase $(OUTPUTDIR)\*.bak
+ -erase $(OUTPUTDIR)\*.err
+ -erase $(OUTPUTDIR)\*.pch
+ -erase $(OUTPUTDIR)\*.lib
+ -erase $(OUTPUTDIR)\*.lbc
+ -erase $(OUTPUTDIR)\*.res
+ -erase $(OUTPUTDIR)\*.exe
+ -erase $(OUTPUTDIR)\*.lbc
-erase $(LIBTARGET)
diff --git a/src/makeprog.wat b/src/makeprog.wat
index d52cc801e1..d2f8809d86 100644
--- a/src/makeprog.wat
+++ b/src/makeprog.wat
@@ -1,22 +1,36 @@
+#
+# Changelist: 2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
+#
+# $+ .. $- means we get the result directly
+THISDIR = $+ $(%cdrive):$(%cwd) $-
+
WXDIR = $(%WXWIN)
+!ifndef EXEDIR
+OUTPUTDIR = $(THISDIR)\Watcom
+!else
+OUTPUTDIR = $(THISDIR)\$(EXEDIR)
+!ifeq EXEDIR "."
+OUTPUTDIR = $(THISDIR)
+!endif
+!endif
!include $(WXDIR)\src\makewat.env
WXLIB = $(WXDIR)\lib
-LNK = $(OUTPUTDIR)$(PROGRAM).lnk
+LNK = $(OUTPUTDIR)\$(PROGRAM).lnk
-all: $(OUTPUTDIR) $(OUTPUTDIR)$(PROGRAM).exe $(EXTRATARGETS) .SYMBOLIC
+all: MAKEDIR $(OUTPUTDIR)\$(PROGRAM).exe $(EXTRATARGETS) .SYMBOLIC
-$(OUTPUTDIR):
- @if not exist $^@ mkdir $^@
+MAKEDIR: .SYMBOLIC
+ @if not exist $(OUTPUTDIR) mkdir $(OUTPUTDIR)
!ifeq wxUSE_GUI 0
RESFILE=
!else
-RESFILE=$(OUTPUTDIR)$(PROGRAM).res
+RESFILE=$(OUTPUTDIR)\$(PROGRAM).res
!endif
-$(OUTPUTDIR)$(PROGRAM).exe : $(OBJECTS) $(RESFILE) $(LNK) $(WXLIB)\$(LIBNAME).lib
+$(OUTPUTDIR)\$(PROGRAM).exe : $(OBJECTS) $(RESFILE) $(LNK) $(WXLIB)\$(LIBNAME).lib
wlink @$(LNK)
!ifneq wxUSE_GUI 0
$(BINDCOMMAND) $(RESFILE)
@@ -27,26 +41,26 @@ $(RESFILE): $(PROGRAM).rc $(WXDIR)\include\wx\msw\wx.rc
$(RC) $(RESFLAGS) /fo=$(RESFILE) $(PROGRAM).rc
!endif
-$(LNK) : makefile.wat
+$(LNK) : .SYMBOLIC
%create $(LNK)
@%append $(LNK) $(LDFLAGS)
@%append $(LNK) $(DEBUGINFO)
@%append $(LNK) system $(LINKSYSTEM)
@%append $(LNK) $(STACK)
- @%append $(LNK) name $(OUTPUTDIR)$(PROGRAM).exe
+ @%append $(LNK) name $(OUTPUTDIR)\$(PROGRAM).exe
@for %i in ($(OBJECTS)) do @%append $(LNK) file %i
@for %i in ($(LIBS)) do @%append $(LNK) lib %i
@for %i in ($(EXTRALIBS)) do @%append $(LNK) lib %i
clean: .SYMBOLIC
- -erase $(OUTPUTDIR)*.obj
- -erase $(OUTPUTDIR)*.bak
- -erase $(OUTPUTDIR)*.err
- -erase $(OUTPUTDIR)*.pch
- -erase $(OUTPUTDIR)*.lib
+ -erase $(OUTPUTDIR)\*.obj
+ -erase $(OUTPUTDIR)\*.bak
+ -erase $(OUTPUTDIR)\*.err
+ -erase $(OUTPUTDIR)\*.pch
+ -erase $(OUTPUTDIR)\*.lib
-erase $(LNK)
- -erase $(OUTPUTDIR)*.res
- -erase $(OUTPUTDIR)*.exe
- -erase $(OUTPUTDIR)*.lbc
+ -erase $(OUTPUTDIR)\*.res
+ -erase $(OUTPUTDIR)\*.exe
+ -erase $(OUTPUTDIR)\*.lbc
-rmdir $(OUTPUTDIR)
diff --git a/src/makewat.env b/src/makewat.env
index 2c60ca773f..a5ddc677b9 100644
--- a/src/makewat.env
+++ b/src/makewat.env
@@ -3,6 +3,7 @@
# Purpose: Watcom environments for wxWindows makefiles.
# Author: Julian Smart and others
# Version: $Id$
+# Changelist: 2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
###############################################################################
# The following environment variables must be set:
@@ -33,8 +34,6 @@ WATCOM_SUFFIX=_w
WINVERFLAGS = /dWINVER=0x400 /d_WIN32_IE=0x0300
# optimize for space/time: /os or /ot
-#
-# NB: at least with OpenWatcom 1.0 using /ox leads to buggy code, don't use it
!ifeq FINAL 1
OPTFLAGS=/oails /5r
!else
@@ -111,11 +110,12 @@ LIBPAGESIZE=/p=2048
# set OUTPUTDIR to the directory to be used for the .obj files created during
# the build (under $WXWIN)
!ifndef OUTPUTDIR
-OUTPUTDIR=$(WXDIR)\$(BASEDIRPREFIX)$(CONFIGURATION)Watcom\
+OUTPUTDIR=$(WXDIR)\$(BASEDIRPREFIX)$(CONFIGURATION)Watcom
+# no trailing slash for win98
!endif
!ifneq NOPRECOMP 1
-PRECOMP = /fh=$(OUTPUTDIR)watcom.pch
+PRECOMP = /fh=$(OUTPUTDIR)\watcom.pch
!endif
# the basename of the library
@@ -153,7 +153,7 @@ RESFLAGS = -q -r -bt=nt /i$(WXDIR)\include /i$(WXDIR)\contrib\include $(WINVE
# NB: /bm switch is needed for thread-safe runtime, if you don't use
# wxThread you may remove it
-CPPFLAGS = /dWIN32 /bm /fo=$(OUTPUTDIR) /fr /zq $(IFLAGS) $(OPTFLAGS) $(WINVERFLAGS) $(EXTRACPPFLAGS)
+CPPFLAGS = /dWIN32 /bm /fo=$(OUTPUTDIR)\ /fr /zq $(IFLAGS) $(OPTFLAGS) $(WINVERFLAGS) $(EXTRACPPFLAGS)
!ifeq wxUSE_GUI 0
CPPFLAGS += /dwxUSE_GUI=0
!endif
@@ -173,4 +173,5 @@ LDFLAGS = option eliminate, vfremoval
defaulttarget: all .SYMBOLIC
erasepch: .SYMBOLIC
- -erase $(OUTPUTDIR)watcom.pch
+ -erase $(OUTPUTDIR)\watcom.pch
+
diff --git a/src/msw/makefile.wat b/src/msw/makefile.wat
index 9c4de8cf64..6bd6b83bad 100644
--- a/src/msw/makefile.wat
+++ b/src/msw/makefile.wat
@@ -354,7 +354,8 @@ $(ARCHINCDIR)\wx:
$(OUTPUTDIR):
@if not exist $^@ mkdir $^@
-$(SETUP_H): $(WXDIR)\include\wx\msw\setup.h $(ARCHINCDIR)\wx
+$(SETUP_H): $(ARCHINCDIR)\wx
+ if not exist $(WXDIR)\include\wx\msw\setup.h copy $(WXDIR)\include\wx\msw\setup0.h $(WXDIR)\include\wx\msw\setup.h
copy $(WXDIR)\include\wx\msw\setup.h $@
LBCFILE=wx$(TOOLKIT).lbc
diff --git a/src/png/makefile.wat b/src/png/makefile.wat
index 643134fbfd..8d5b96706f 100644
--- a/src/png/makefile.wat
+++ b/src/png/makefile.wat
@@ -3,12 +3,12 @@
# File: makefile.wat
# Author: Julian Smart
# Created: 1998
+# Changelist: 2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
#
# Makefile : Builds PNG library for Watcom C++, WIN32
WXDIR = ..\..
EXTRACPPFLAGS=-i=..\zlib
-OUTPUTDIR=Watcom\
!include $(WXDIR)\src\makewat.env
@@ -17,39 +17,39 @@ WXLIB = $(WXDIR)\lib
LIBTARGET = $(WXLIB)\png$(WATCOM_SUFFIX).lib
OBJECTS = &
- $(OUTPUTDIR)png.obj &
- $(OUTPUTDIR)pngread.obj &
- $(OUTPUTDIR)pngrtran.obj &
- $(OUTPUTDIR)pngrutil.obj &
- $(OUTPUTDIR)pngpread.obj &
- $(OUTPUTDIR)pngtrans.obj &
- $(OUTPUTDIR)pngwrite.obj &
- $(OUTPUTDIR)pngwtran.obj &
- $(OUTPUTDIR)pngwutil.obj &
- $(OUTPUTDIR)pngerror.obj &
- $(OUTPUTDIR)pngmem.obj &
- $(OUTPUTDIR)pngwio.obj &
- $(OUTPUTDIR)pngrio.obj &
- $(OUTPUTDIR)pngget.obj &
- $(OUTPUTDIR)pngset.obj
+ $(OUTPUTDIR)\png.obj &
+ $(OUTPUTDIR)\pngread.obj &
+ $(OUTPUTDIR)\pngrtran.obj &
+ $(OUTPUTDIR)\pngrutil.obj &
+ $(OUTPUTDIR)\pngpread.obj &
+ $(OUTPUTDIR)\pngtrans.obj &
+ $(OUTPUTDIR)\pngwrite.obj &
+ $(OUTPUTDIR)\pngwtran.obj &
+ $(OUTPUTDIR)\pngwutil.obj &
+ $(OUTPUTDIR)\pngerror.obj &
+ $(OUTPUTDIR)\pngmem.obj &
+ $(OUTPUTDIR)\pngwio.obj &
+ $(OUTPUTDIR)\pngrio.obj &
+ $(OUTPUTDIR)\pngget.obj &
+ $(OUTPUTDIR)\pngset.obj
all: $(OUTPUTDIR) $(LIBTARGET) .SYMBOLIC
$(OUTPUTDIR):
@if not exist $^@ mkdir $^@
-LBCFILE=$(OUTPUTDIR)png.lbc
+LBCFILE=$(OUTPUTDIR)\png.lbc
$(LIBTARGET) : $(OBJECTS)
%create $(LBCFILE)
@for %i in ( $(OBJECTS) ) do @%append $(LBCFILE) +%i
wlib /q /b /c /n /p=512 $^@ @$(LBCFILE)
clean: .SYMBOLIC
- -erase $(OUTPUTDIR)*.obj
+ -erase $(OUTPUTDIR)\*.obj
-erase $(LIBTARGET)
- -erase $(OUTPUTDIR)*.pch
- -erase $(OUTPUTDIR)*.err
- -erase $(OUTPUTDIR)*.lbc
+ -erase $(OUTPUTDIR)\*.pch
+ -erase $(OUTPUTDIR)\*.err
+ -erase $(OUTPUTDIR)\*.lbc
cleanall: clean
diff --git a/src/regex/makefile.wat b/src/regex/makefile.wat
index 3e9eb10cb0..ba3b063441 100644
--- a/src/regex/makefile.wat
+++ b/src/regex/makefile.wat
@@ -3,14 +3,13 @@
# File: makefile.wat
# Author: Julian Smart
# Created: 1998
+# Changelist: 2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
#
# Makefile : Builds REGEX library for Watcom C++, WIN32
WXDIR = ..\..
EXTRACPPFLAGS=-DPOSIX_MISTAKE
-OUTPUTDIR=watcom\
-
!include $(WXDIR)\src\makewat.env
WXLIB = $(WXDIR)\lib
@@ -18,17 +17,17 @@ WXLIB = $(WXDIR)\lib
LIBTARGET = $(WXLIB)\regex$(WATCOM_SUFFIX).lib
OBJECTS = &
- $(OUTPUTDIR)regcomp.obj &
- $(OUTPUTDIR)regexec.obj &
- $(OUTPUTDIR)regerror.obj &
- $(OUTPUTDIR)regfree.obj
+ $(OUTPUTDIR)\regcomp.obj &
+ $(OUTPUTDIR)\regexec.obj &
+ $(OUTPUTDIR)\regerror.obj &
+ $(OUTPUTDIR)\regfree.obj
all: $(OUTPUTDIR) $(LIBTARGET) .SYMBOLIC
$(OUTPUTDIR):
@if not exist $^@ mkdir $^@
-LBCFILE=$(OUTPUTDIR)regex.lbc
+LBCFILE=$(OUTPUTDIR)\regex.lbc
$(LIBTARGET) : $(OBJECTS)
%create $(LBCFILE)
@for %i in ( $(OBJECTS) ) do @%append $(LBCFILE) +%i
diff --git a/src/stc/makefile.wat b/src/stc/makefile.wat
index c9f3157bf8..6ef59ff7dd 100644
--- a/src/stc/makefile.wat
+++ b/src/stc/makefile.wat
@@ -10,7 +10,7 @@ EXTRACPPFLAGS = -I$(WXDIR)\contrib\include $(STCEXTRACPPFLAGS)
!include $(WXDIR)\src\makewat.env
-STCLIB = $(WXDIR)\lib\stc.lib
+STCLIB = $(WXDIR)\lib\stc_w.lib
THISDIR = $(WXDIR)\contrib\src\stc
OUTPUTDIR = $(THISDIR)\
diff --git a/src/tiff/makefile.wat b/src/tiff/makefile.wat
index e1c130b41d..f84784545a 100644
--- a/src/tiff/makefile.wat
+++ b/src/tiff/makefile.wat
@@ -3,6 +3,7 @@
# File: makefile.wat
# Author: Julian Smart
# Created: 1998
+# Changelist: 2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
#
# Makefile : Builds TIFF library for Watcom C++, WIN32
# This makefile has to rename files because apparently Watcom C++
@@ -31,42 +32,42 @@ LIBTARGET = $(WXLIB)\tiff$(WATCOM_SUFFIX).lib
OBJECTS= &
!ifeq RENAME 1
- $(OUTPUTDIR)_aux.obj &
+ $(OUTPUTDIR)\_aux.obj &
!else
- $(OUTPUTDIR)tif_aux.obj &
+ $(OUTPUTDIR)\tif_aux.obj &
!endif
- $(OUTPUTDIR)$(TIFF)close.obj &
- $(OUTPUTDIR)$(TIFF)codec.obj &
- $(OUTPUTDIR)$(TIFF)compress.obj &
- $(OUTPUTDIR)$(TIFF)dir.obj &
- $(OUTPUTDIR)$(TIFF)dirinfo.obj &
- $(OUTPUTDIR)$(TIFF)dirread.obj &
- $(OUTPUTDIR)$(TIFF)dirwrite.obj &
- $(OUTPUTDIR)$(TIFF)dumpmode.obj &
- $(OUTPUTDIR)$(TIFF)error.obj &
- $(OUTPUTDIR)$(TIFF)fax3.obj &
- $(OUTPUTDIR)$(TIFF)fax3sm.obj &
- $(OUTPUTDIR)$(TIFF)flush.obj &
- $(OUTPUTDIR)$(TIFF)getimage.obj &
- $(OUTPUTDIR)$(TIFF)jpeg.obj &
- $(OUTPUTDIR)$(TIFF)luv.obj &
- $(OUTPUTDIR)$(TIFF)lzw.obj &
- $(OUTPUTDIR)$(TIFF)next.obj &
- $(OUTPUTDIR)$(TIFF)open.obj &
- $(OUTPUTDIR)$(TIFF)packbits.obj &
- $(OUTPUTDIR)$(TIFF)pixarlog.obj &
- $(OUTPUTDIR)$(TIFF)predict.obj &
- $(OUTPUTDIR)$(TIFF)print.obj &
- $(OUTPUTDIR)$(TIFF)read.obj &
- $(OUTPUTDIR)$(TIFF)strip.obj &
- $(OUTPUTDIR)$(TIFF)swab.obj &
- $(OUTPUTDIR)$(TIFF)thunder.obj &
- $(OUTPUTDIR)$(TIFF)tile.obj &
- $(OUTPUTDIR)$(TIFF)version.obj &
- $(OUTPUTDIR)$(TIFF)warning.obj &
- $(OUTPUTDIR)$(TIFF)win32.obj &
- $(OUTPUTDIR)$(TIFF)write.obj &
- $(OUTPUTDIR)$(TIFF)zip.obj
+ $(OUTPUTDIR)\$(TIFF)close.obj &
+ $(OUTPUTDIR)\$(TIFF)codec.obj &
+ $(OUTPUTDIR)\$(TIFF)compress.obj &
+ $(OUTPUTDIR)\$(TIFF)dir.obj &
+ $(OUTPUTDIR)\$(TIFF)dirinfo.obj &
+ $(OUTPUTDIR)\$(TIFF)dirread.obj &
+ $(OUTPUTDIR)\$(TIFF)dirwrite.obj &
+ $(OUTPUTDIR)\$(TIFF)dumpmode.obj &
+ $(OUTPUTDIR)\$(TIFF)error.obj &
+ $(OUTPUTDIR)\$(TIFF)fax3.obj &
+ $(OUTPUTDIR)\$(TIFF)fax3sm.obj &
+ $(OUTPUTDIR)\$(TIFF)flush.obj &
+ $(OUTPUTDIR)\$(TIFF)getimage.obj &
+ $(OUTPUTDIR)\$(TIFF)jpeg.obj &
+ $(OUTPUTDIR)\$(TIFF)luv.obj &
+ $(OUTPUTDIR)\$(TIFF)lzw.obj &
+ $(OUTPUTDIR)\$(TIFF)next.obj &
+ $(OUTPUTDIR)\$(TIFF)open.obj &
+ $(OUTPUTDIR)\$(TIFF)packbits.obj &
+ $(OUTPUTDIR)\$(TIFF)pixarlog.obj &
+ $(OUTPUTDIR)\$(TIFF)predict.obj &
+ $(OUTPUTDIR)\$(TIFF)print.obj &
+ $(OUTPUTDIR)\$(TIFF)read.obj &
+ $(OUTPUTDIR)\$(TIFF)strip.obj &
+ $(OUTPUTDIR)\$(TIFF)swab.obj &
+ $(OUTPUTDIR)\$(TIFF)thunder.obj &
+ $(OUTPUTDIR)\$(TIFF)tile.obj &
+ $(OUTPUTDIR)\$(TIFF)version.obj &
+ $(OUTPUTDIR)\$(TIFF)warning.obj &
+ $(OUTPUTDIR)\$(TIFF)win32.obj &
+ $(OUTPUTDIR)\$(TIFF)write.obj &
+ $(OUTPUTDIR)\$(TIFF)zip.obj
all: $(OUTPUTDIR) $(RENAME) $(LIBTARGET) .SYMBOLIC
@@ -111,7 +112,7 @@ rename: .SYMBOLIC
$(OUTPUTDIR):
@if not exist $^@ mkdir $^@
-LBCFILE=$(OUTPUTDIR)tiff.lbc
+LBCFILE=$(OUTPUTDIR)\tiff.lbc
$(LIBTARGET) : $(OBJECTS)
%create $(LBCFILE)
@for %i in ( $(OBJECTS) ) do @%append $(LBCFILE) +%i
diff --git a/src/wxwindowsM5.xml b/src/wxwindowsM5.xml
index b8ed6d1d98..9734d90558 100644
--- a/src/wxwindowsM5.xml
+++ b/src/wxwindowsM5.xml
@@ -616,23923 +616,4 @@
MWMerge_MacOS_skipResources
- ñ
-
-
-
-
- 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_showsym1
- MWDisassembler_PPC_shownames1
-
-
- GlobalOptimizer_PPC_optimizationlevelLevel0
- GlobalOptimizer_PPC_optforSpeed
-
-
- MWLinker_PPC_linksym1
- MWLinker_PPC_symfullpath1
- MWLinker_PPC_linkmap0
- MWLinker_PPC_nolinkwarnings0
- MWLinker_PPC_dontdeadstripinitcode1
- MWLinker_PPC_permitmultdefs0
- MWLinker_PPC_linkmodeFast
- MWLinker_PPC_initname
- MWLinker_PPC_mainname__start
- MWLinker_PPC_termname
- PPC Mach-O CodeGen
- 0001000001010000010000000001010101000000
-
- PPC Mach-O Linker
- 0001000000000100000100000000000000000000000000000000000000007374
- 6172740000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000
-
- PPC Mach-O Target
- 0001000005612E6F757400000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000
-
-
-
- MWPEF_exportsAll
- MWPEF_libfolder0
- MWPEF_sortcodeNone
- MWPEF_expandbss0
- MWPEF_sharedata0
- MWPEF_olddefversion0
- MWPEF_oldimpversion0
- MWPEF_currentversion0
- MWPEF_fragmentnamewxwin
- MWPEF_collapsereloads0
-
-
- MWProject_PPC_typeLibrary
- MWProject_PPC_outfilewx_PPC_d.lib
- MWProject_PPC_filecreator1061109567
- MWProject_PPC_filetype1061109567
- MWProject_PPC_size0
- MWProject_PPC_minsize0
- MWProject_PPC_stacksize0
- MWProject_PPC_flags0
- 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'
-
-
-
- PathRelative
- Project
- ::include:
- :wx_cw_d.pch
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- ::include:
- :wx_cw_d.pch++
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :accel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :app.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :bitmap.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :bmpbuttn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :brush.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :button.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :checkbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :checklst.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :choice.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :clipbrd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :colordlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :colour.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :combobox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :control.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :cursor.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :data.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcclient.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcmemory.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcscreen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dialog.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dirdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :filedlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :font.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :frame.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gauge.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gdiobj.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :icon.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :joystick.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :listbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :main.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :mdi.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :menu.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :menuitem.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :minifram.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :msgdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :palette.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :pen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :printdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :radiobox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :radiobut.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :region.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :scrolbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :settings.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :slider.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :spinbutt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbmp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :stattext.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :tabctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :taskbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :textctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :thread.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :timer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :toolbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :utils.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :utilsexc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :wave.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :window.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :pnghand.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :printmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcprint.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :aga.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :uma.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckipc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :matrix.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :tbarbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagjpeg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :longlong.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :docmdi.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :appcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :odbc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :utilscmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynlib.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :extended.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :unzip.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :zstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :process.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :docview.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sizer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagall.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imaggif.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpcx.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmndata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ftp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :menucmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :string.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wfstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :stream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gdicmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :protocol.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cwy_tab.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :layout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :valgen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :intl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :list.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :socket.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :hash.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dlgcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gifdecod.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wxexpr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filefn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wincmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :resource.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wxchar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :memory.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :mstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :lboxcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_inet.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :event.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :image.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ipcbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :tokenzr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :txtstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filesys.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :url.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_zip.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :prntbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dcbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :object.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :http.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :module.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :validate.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :file.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :config.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fileconf.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :timercmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :framecmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textfile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynarray.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :choiccmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :helpbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ctrlsub.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ctrlcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :strconv.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckfile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :valtext.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :datstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckaddr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :variant.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dbtable.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fontcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ffile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :paper.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :clipcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpnm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpng.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagbmp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :zipstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :log.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :laywin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :busyinfo.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :listctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :textdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tipdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :numdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :sashwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dcpsg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :prntdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :prop.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :propform.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :panelg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :imaglist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tabg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :choicdgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :wizard.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :progdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :caret.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :statusbr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :logg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :proplist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :fontdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :splitter.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :helphtml.cpp
- MacOS
- Text
- Debug
-
-
- Name
- db.cpp
- MacOS
- Text
- Debug
-
-
- Name
- dobjcmn.cpp
- MacOS
- Text
- Debug
-
-
- Name
- print.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fontmap.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :geometry.cpp
- MacOS
- Text
- Debug
-
-
- Name
- colrdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontutil.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dataobj.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_list.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_tables.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_pre.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_image.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmprint.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlfilt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlpars.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmltag.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_hline.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :winpars.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlcell.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_layout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_fonts.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_links.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontenum.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :datetime.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :encconv.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :mimecmn.cpp
- MacOS
- Text
- Debug
-
-
- Name
- metafile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gsocket.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :macnotfy.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbrma.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :tooltip.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statlmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagtiff.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :treectlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :notebmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_dflist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :treelay.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :treebase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cshelp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filename.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmdline.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dndcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :effects.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_mem.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :quantize.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :calctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridsel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dragimgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :msgdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :splash.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tbarsmpl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :helpctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :helpdata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :helpfrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tipwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dirmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :mimetmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :spinctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :xpmdecod.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagxpm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :glcanvas.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :nbkbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :scrlwing.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmdproc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dbgrid.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dircmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gaugecmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :popupcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :radiocmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dnd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :regex.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :containr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fddlgcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :fdrepdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :toplvcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :toplevel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:DirectoryCopy.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FileCopy.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FSpCompat.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FullPath.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:IterateDirectory.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreDesktopMgr.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFiles.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFilesExtras.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:Search.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :statbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :clntdata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dseldlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sysopt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textbuf.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :bmpbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagiff.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_style.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :artprov.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :artstd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :hashmap.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :iconbndl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagfill.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dirdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dcbuffer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dirctrlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :msgout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :settcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynload.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :display.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :grid.cpp
- MacOS
- Text
- Debug
-
-
-
-
- PathRelative
- Project
- ::include:
- :wx_cw_d.pch
- MacOS
-
-
- PathRelative
- Project
- ::include:
- :wx_cw_d.pch++
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :accel.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :app.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :bitmap.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :bmpbuttn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :brush.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :button.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :checkbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :checklst.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :choice.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :clipbrd.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :colordlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :colour.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :combobox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :control.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :cursor.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :data.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dc.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcclient.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcmemory.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcscreen.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dialog.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dirdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :filedlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :font.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :frame.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gauge.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gdiobj.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :icon.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :joystick.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :listbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :main.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :mdi.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :menu.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :menuitem.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :minifram.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :msgdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :palette.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :pen.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :printdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :radiobox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :radiobut.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :region.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :scrolbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :settings.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :slider.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :spinbutt.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbmp.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :stattext.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :tabctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :taskbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :textctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :thread.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :timer.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :toolbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :utils.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :utilsexc.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :wave.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :window.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :pnghand.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :printmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcprint.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :aga.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :uma.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckipc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :matrix.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :tbarbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagjpeg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :longlong.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :docmdi.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :appcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :odbc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :utilscmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynlib.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :extended.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :unzip.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :zstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :process.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :docview.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sizer.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagall.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imaggif.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpcx.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmndata.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ftp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :menucmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :string.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wfstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :stream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gdicmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :protocol.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cwy_tab.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :layout.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :valgen.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :intl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :list.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :socket.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :hash.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dlgcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gifdecod.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wxexpr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filefn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wincmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :resource.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wxchar.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :memory.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :mstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :lboxcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_inet.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :event.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :image.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ipcbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :tokenzr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :txtstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filesys.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :url.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_zip.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :prntbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dcbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :object.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :http.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :module.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :validate.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :file.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :config.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fileconf.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :timercmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :framecmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textfile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynarray.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :choiccmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :helpbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ctrlsub.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ctrlcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :strconv.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckfile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :valtext.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :datstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckaddr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :variant.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dbtable.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fontcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ffile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :paper.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :clipcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpnm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpng.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagbmp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :zipstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :log.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :laywin.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :busyinfo.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :listctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :textdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tipdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :numdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :sashwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dcpsg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :prntdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :prop.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :propform.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :panelg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :imaglist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tabg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :choicdgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :wizard.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :progdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :caret.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :statusbr.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :logg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :proplist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :fontdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :splitter.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :helphtml.cpp
- MacOS
-
-
- Name
- db.cpp
- MacOS
-
-
- Name
- dobjcmn.cpp
- MacOS
-
-
- Name
- print.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fontmap.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :geometry.cpp
- MacOS
-
-
- Name
- colrdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontutil.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dataobj.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_list.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_tables.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_pre.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_image.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmprint.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlfilt.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlpars.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmltag.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_hline.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :winpars.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlcell.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_layout.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_fonts.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_links.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontenum.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :datetime.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :encconv.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :mimecmn.cpp
- MacOS
-
-
- Name
- metafile.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gsocket.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :macnotfy.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbrma.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :tooltip.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statlmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagtiff.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :treectlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :notebmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_dflist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :treelay.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :treebase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cshelp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filename.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmdline.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dndcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :effects.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_mem.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :quantize.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :calctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridsel.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dragimgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :msgdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :splash.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tbarsmpl.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :helpctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :helpdata.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :helpfrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tipwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dirmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :mimetmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :spinctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :xpmdecod.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagxpm.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :glcanvas.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :nbkbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :scrlwing.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmdproc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dbgrid.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dircmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gaugecmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :popupcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :radiocmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dnd.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :regex.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :containr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fddlgcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :fdrepdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :toplvcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :toplevel.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:DirectoryCopy.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FileCopy.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FSpCompat.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FullPath.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:IterateDirectory.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreDesktopMgr.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFiles.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFilesExtras.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:Search.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :statbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :clntdata.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dseldlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sysopt.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textbuf.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :bmpbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagiff.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_style.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :artprov.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :artstd.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :hashmap.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :iconbndl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagfill.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dirdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dcbuffer.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dirctrlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :msgout.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :settcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynload.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :display.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :grid.cpp
- MacOS
-
-
-
-
- Classic Release
-
-
-
- UserSourceTrees
-
-
- CustomColor1
- Red0
- Green32767
- Blue0
-
- CustomColor2
- Red0
- Green32767
- Blue0
-
- CustomColor3
- Red0
- Green32767
- Blue0
-
- CustomColor4
- Red0
- Green32767
- Blue0
-
-
-
- AlwaysSearchUserPathstrue
- InterpretDOSAndUnixPathstrue
- UserSearchPaths
-
- SearchPath
- Path::include:
- PathFormatMacOS
- PathRootProject
-
- Recursivefalse
- HostFlagsAll
-
-
- SearchPath
- Path:generic:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:mac:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:common:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:zlib:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:png:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:jpeg:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:iodbc:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:html:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:regex:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:tiff:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SystemSearchPaths
-
- SearchPath
- Path:MSL:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:MacOS Support:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:(Debugger Extras):MetroNub Utilities:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
-
-
- LinkerMacOS PPC Linker
- PreLinker
- PostLinker
- TargetnameClassic Release
- OutputDirectory
- Path::lib:
- PathFormatMacOS
- PathRootProject
-
- SaveEntriesUsingRelativePathstrue
-
-
- 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.bh
- CompilerBalloon Help
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- 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.p
- CompilerMW Pascal PPC
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.pas
- CompilerMW Pascal PPC
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.pch
- CompilerMW C/C++ PPC
- Precompiletrue
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.pch++
- CompilerMW C/C++ PPC
- Precompiletrue
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.ppu
- CompilerMW Pascal PPC
- Precompiletrue
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.r
- CompilerRez
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.s
- CompilerPPCAsm
- 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_mpwcnewline0
- MWFrontEnd_C_wchar_type1
- MWFrontEnd_C_enableexceptions1
- MWFrontEnd_C_dontreusestrings0
- MWFrontEnd_C_poolstrings0
- MWFrontEnd_C_dontinline0
- MWFrontEnd_C_useRTTI1
- MWFrontEnd_C_multibyteaware0
- MWFrontEnd_C_unsignedchars1
- MWFrontEnd_C_autoinline0
- MWFrontEnd_C_booltruefalse1
- MWFrontEnd_C_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
-
-
- ñ
-
-
-
-
- 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_optimizationlevelLevel2
- GlobalOptimizer_PPC_optforSpeed
-
-
- MWLinker_PPC_linksym1
- MWLinker_PPC_symfullpath1
- MWLinker_PPC_linkmap0
- MWLinker_PPC_nolinkwarnings0
- MWLinker_PPC_dontdeadstripinitcode1
- MWLinker_PPC_permitmultdefs0
- MWLinker_PPC_linkmodeFast
- MWLinker_PPC_initname
- MWLinker_PPC_mainname__start
- MWLinker_PPC_termname
- PPC Mach-O CodeGen
- 0001000001010000010000000001010101000000
-
- PPC Mach-O Linker
- 0001000000000100000100000000000000000000000000000000000000007374
- 6172740000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000
-
- PPC Mach-O Target
- 0001000005612E6F757400000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000
-
-
-
- MWPEF_exportsAll
- MWPEF_libfolder0
- MWPEF_sortcodeNone
- MWPEF_expandbss0
- MWPEF_sharedata0
- MWPEF_olddefversion0
- MWPEF_oldimpversion0
- MWPEF_currentversion0
- MWPEF_fragmentnamewxwin
- MWPEF_collapsereloads0
-
-
- MWProject_PPC_typeLibrary
- MWProject_PPC_outfilewx_PPC.lib
- MWProject_PPC_filecreator1061109567
- MWProject_PPC_filetype1061109567
- MWProject_PPC_size0
- MWProject_PPC_minsize0
- MWProject_PPC_stacksize0
- MWProject_PPC_flags0
- 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'
-
-
-
- PathRelative
- Project
- :mac:
- :accel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :app.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :bitmap.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :bmpbuttn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :brush.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :button.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :checkbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :checklst.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :choice.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :clipbrd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :colordlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :colour.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :combobox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :control.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :cursor.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :data.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcclient.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcmemory.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcscreen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dialog.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dirdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :filedlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :font.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :frame.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gauge.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gdiobj.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :icon.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :joystick.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :listbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :main.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :mdi.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :menu.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :menuitem.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :minifram.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :msgdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :palette.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :pen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :print.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :printdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :radiobox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :radiobut.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :region.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :scrolbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :settings.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :slider.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :spinbutt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbmp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :stattext.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :tabctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :taskbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :textctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :thread.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :timer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :toolbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :utils.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :utilsexc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :wave.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :window.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :pnghand.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :printmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcprint.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :aga.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :uma.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckipc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :matrix.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :tbarbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagjpeg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :longlong.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :docmdi.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :appcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :odbc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :utilscmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynlib.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :extended.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :unzip.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :zstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :process.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :docview.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sizer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dobjcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagall.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imaggif.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpcx.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmndata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ftp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :menucmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :string.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wfstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :stream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gdicmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :protocol.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cwy_tab.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :layout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :valgen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :intl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :list.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :socket.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :hash.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dlgcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gifdecod.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wxexpr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filefn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wincmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :resource.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wxchar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :memory.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :mstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :lboxcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_inet.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :event.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :image.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ipcbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :tokenzr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :txtstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filesys.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :url.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_zip.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :prntbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dcbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :object.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :http.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :module.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :validate.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :file.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :config.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fileconf.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :timercmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :framecmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textfile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynarray.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :choiccmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :helpbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :db.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ctrlsub.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ctrlcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :strconv.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckfile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :valtext.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :datstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckaddr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :variant.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dbtable.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fontcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ffile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :paper.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :clipcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpnm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpng.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagbmp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :zipstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :log.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :laywin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :busyinfo.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :listctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :textdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :numdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :sashwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dcpsg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :prntdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :prop.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :propform.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :panelg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :imaglist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tabg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :choicdgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :wizard.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :progdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :caret.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :statusbr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :logg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :proplist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :fontdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :splitter.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :helphtml.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fontmap.cpp
- MacOS
- Text
- Debug
-
-
- Name
- tipdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :geometry.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontutil.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dataobj.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontenum.cpp
- MacOS
- Text
- Debug
-
-
- Name
- colrdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :datetime.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :encconv.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :mimecmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gsocket.c
- MacOS
- Text
- Debug
-
-
- Name
- metafile.cpp
- MacOS
- Text
- Debug
-
-
- Name
- wx_cw.pch
- MacOS
- Text
- Debug
-
-
- Name
- wx_cw.pch++
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :macnotfy.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbrma.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :tooltip.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statlmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagtiff.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :treectlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :notebmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :treelay.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :treebase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cshelp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filename.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmdline.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dndcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :effects.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_mem.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :quantize.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :calctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridsel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dragimgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :msgdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :splash.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tbarsmpl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tipwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dirmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :mimetmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :spinctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :xpmdecod.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagxpm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :glcanvas.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :nbkbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :scrlwing.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmdproc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dbgrid.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dircmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gaugecmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :popupcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :radiocmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dnd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :regex.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :containr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fddlgcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :fdrepdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :toplvcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :toplevel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:DirectoryCopy.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FileCopy.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FSpCompat.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FullPath.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:IterateDirectory.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreDesktopMgr.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFiles.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFilesExtras.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:Search.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :statbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :clntdata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dseldlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sysopt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textbuf.cpp
- MacOS
- Text
- Debug
-
-
- Name
- m_dflist.cpp
- MacOS
- Text
- Debug
-
-
- Name
- m_fonts.cpp
- MacOS
- Text
- Debug
-
-
- Name
- m_hline.cpp
- MacOS
- Text
- Debug
-
-
- Name
- m_image.cpp
- MacOS
- Text
- Debug
-
-
- Name
- m_layout.cpp
- MacOS
- Text
- Debug
-
-
- Name
- m_links.cpp
- MacOS
- Text
- Debug
-
-
- Name
- m_list.cpp
- MacOS
- Text
- Debug
-
-
- Name
- m_pre.cpp
- MacOS
- Text
- Debug
-
-
- Name
- m_tables.cpp
- MacOS
- Text
- Debug
-
-
- Name
- helpctrl.cpp
- MacOS
- Text
- Debug
-
-
- Name
- helpdata.cpp
- MacOS
- Text
- Debug
-
-
- Name
- helpfrm.cpp
- MacOS
- Text
- Debug
-
-
- Name
- htmlcell.cpp
- MacOS
- Text
- Debug
-
-
- Name
- htmlfilt.cpp
- MacOS
- Text
- Debug
-
-
- Name
- htmlpars.cpp
- MacOS
- Text
- Debug
-
-
- Name
- htmltag.cpp
- MacOS
- Text
- Debug
-
-
- Name
- htmlwin.cpp
- MacOS
- Text
- Debug
-
-
- Name
- htmprint.cpp
- MacOS
- Text
- Debug
-
-
- Name
- winpars.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :bmpbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagiff.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :artprov.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :artstd.cpp
- MacOS
- Text
- Debug
-
-
- Name
- m_style.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :hashmap.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :iconbndl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagfill.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dirdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dcbuffer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dirctrlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :msgout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynload.cpp
- MacOS
- Text
- Debug
-
-
- Name
- settcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :display.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :grid.cpp
- MacOS
- Text
- Debug
-
-
-
-
- PathRelative
- Project
- :mac:
- :accel.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :app.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :bitmap.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :bmpbuttn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :brush.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :button.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :checkbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :checklst.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :choice.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :clipbrd.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :colordlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :colour.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :combobox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :control.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :cursor.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :data.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dc.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcclient.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcmemory.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcscreen.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dialog.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dirdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :filedlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :font.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :frame.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gauge.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gdiobj.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :icon.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :joystick.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :listbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :main.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :mdi.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :menu.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :menuitem.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :minifram.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :msgdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :palette.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :pen.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :print.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :printdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :radiobox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :radiobut.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :region.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :scrolbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :settings.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :slider.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :spinbutt.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbmp.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :stattext.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :tabctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :taskbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :textctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :thread.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :timer.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :toolbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :utils.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :utilsexc.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :wave.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :window.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :pnghand.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :printmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcprint.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :aga.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :uma.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckipc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :matrix.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :tbarbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagjpeg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :longlong.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :docmdi.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :appcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :odbc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :utilscmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynlib.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :extended.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :unzip.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :zstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :process.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :docview.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sizer.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dobjcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagall.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imaggif.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpcx.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmndata.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ftp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :menucmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :string.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wfstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :stream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gdicmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :protocol.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cwy_tab.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :layout.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :valgen.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :intl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :list.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :socket.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :hash.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dlgcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gifdecod.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wxexpr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filefn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wincmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :resource.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wxchar.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :memory.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :mstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :lboxcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_inet.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :event.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :image.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ipcbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :tokenzr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :txtstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filesys.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :url.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_zip.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :prntbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dcbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :object.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :http.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :module.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :validate.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :file.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :config.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fileconf.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :timercmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :framecmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textfile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynarray.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :choiccmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :helpbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :db.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ctrlsub.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ctrlcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :strconv.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckfile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :valtext.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :datstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckaddr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :variant.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dbtable.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fontcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ffile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :paper.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :clipcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpnm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpng.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagbmp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :zipstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :log.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :laywin.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :busyinfo.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :listctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :textdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :numdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :sashwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dcpsg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :prntdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :prop.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :propform.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :panelg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :imaglist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tabg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :choicdgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :wizard.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :progdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :caret.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :statusbr.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :logg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :proplist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :fontdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :splitter.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :helphtml.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fontmap.cpp
- MacOS
-
-
- Name
- tipdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :geometry.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontutil.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dataobj.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontenum.cpp
- MacOS
-
-
- Name
- colrdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :datetime.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :encconv.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :mimecmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gsocket.c
- MacOS
-
-
- Name
- metafile.cpp
- MacOS
-
-
- Name
- wx_cw.pch
- MacOS
-
-
- Name
- wx_cw.pch++
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :macnotfy.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbrma.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :tooltip.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statlmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagtiff.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :treectlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :notebmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :treelay.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :treebase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cshelp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filename.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmdline.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dndcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :effects.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_mem.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :quantize.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :calctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridsel.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dragimgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :msgdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :splash.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tbarsmpl.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tipwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dirmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :mimetmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :spinctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :xpmdecod.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagxpm.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :glcanvas.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :nbkbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :scrlwing.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmdproc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dbgrid.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dircmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gaugecmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :popupcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :radiocmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dnd.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :regex.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :containr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fddlgcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :fdrepdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :toplvcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :toplevel.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:DirectoryCopy.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FileCopy.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FSpCompat.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FullPath.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:IterateDirectory.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreDesktopMgr.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFiles.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFilesExtras.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:Search.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :statbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :clntdata.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dseldlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sysopt.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textbuf.cpp
- MacOS
-
-
- Name
- m_dflist.cpp
- MacOS
-
-
- Name
- m_fonts.cpp
- MacOS
-
-
- Name
- m_hline.cpp
- MacOS
-
-
- Name
- m_image.cpp
- MacOS
-
-
- Name
- m_layout.cpp
- MacOS
-
-
- Name
- m_links.cpp
- MacOS
-
-
- Name
- m_list.cpp
- MacOS
-
-
- Name
- m_pre.cpp
- MacOS
-
-
- Name
- m_tables.cpp
- MacOS
-
-
- Name
- helpctrl.cpp
- MacOS
-
-
- Name
- helpdata.cpp
- MacOS
-
-
- Name
- helpfrm.cpp
- MacOS
-
-
- Name
- htmlcell.cpp
- MacOS
-
-
- Name
- htmlfilt.cpp
- MacOS
-
-
- Name
- htmlpars.cpp
- MacOS
-
-
- Name
- htmltag.cpp
- MacOS
-
-
- Name
- htmlwin.cpp
- MacOS
-
-
- Name
- htmprint.cpp
- MacOS
-
-
- Name
- winpars.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :bmpbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagiff.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :artprov.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :artstd.cpp
- MacOS
-
-
- Name
- m_style.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :hashmap.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :iconbndl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagfill.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dirdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dcbuffer.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dirctrlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :msgout.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynload.cpp
- MacOS
-
-
- Name
- settcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :display.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :grid.cpp
- MacOS
-
-
-
-
- All
-
-
-
- UserSourceTrees
-
-
- CustomColor1
- Red0
- Green32767
- Blue0
-
- CustomColor2
- Red0
- Green32767
- Blue0
-
- CustomColor3
- Red0
- Green32767
- Blue0
-
- CustomColor4
- Red0
- Green32767
- Blue0
-
-
-
- AlwaysSearchUserPathsfalse
- InterpretDOSAndUnixPathsfalse
- UserSearchPaths
-
- SearchPath
- Path:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SystemSearchPaths
-
- SearchPath
- Path:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
-
-
- LinkerNone
- PreLinker
- PostLinker
- TargetnameAll
- OutputDirectory
- Path:
- PathFormatMacOS
- PathRootProject
-
- SaveEntriesUsingRelativePathsfalse
-
-
- FileMappings
-
- FileTypeMMPr
- FileExtension
- Compiler
- Precompilefalse
- Launchabletrue
- ResourceFilefalse
- 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
- 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
-
-
- 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
-
-
- ñ
-
-
-
-
- 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_outfilea.out
- MWProject_PPC_filecreator1061109567
- MWProject_PPC_filetype1095782476
- MWProject_PPC_size384
- MWProject_PPC_minsize384
- 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'
-
-
-
-
-
-
-
- Carbon Release
-
-
- Carbon Debug
-
-
- Carbon Resources
-
-
- Classic Release
-
-
- Classic Debug
-
-
- Classic Resources
-
-
-
-
- Classic Resources
-
-
-
- UserSourceTrees
-
-
- CustomColor1
- Red0
- Green32767
- Blue0
-
- CustomColor2
- Red0
- Green32767
- Blue0
-
- CustomColor3
- Red0
- Green32767
- Blue0
-
- CustomColor4
- Red0
- Green32767
- Blue0
-
-
-
- AlwaysSearchUserPathsfalse
- InterpretDOSAndUnixPathsfalse
- UserSearchPaths
-
- SearchPath
- Path:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path::lib:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SystemSearchPaths
-
- SearchPath
- Path:MacOS Support:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
-
-
- LinkerMacOS Merge
- PreLinker
- PostLinker
- TargetnameClassic Resources
- OutputDirectory
- Path::lib:
- PathFormatMacOS
- PathRootProject
-
- SaveEntriesUsingRelativePathsfalse
-
-
- FileMappings
-
- FileTypeAPPL
- FileExtension
- Compiler
- Precompilefalse
- Launchabletrue
- ResourceFiletrue
- IgnoredByMakefalse
-
-
- FileTypeAppl
- FileExtension
- Compiler
- Precompilefalse
- Launchabletrue
- ResourceFiletrue
- IgnoredByMakefalse
-
-
- FileTypeRSRC
- FileExtension
- Compiler
- Precompilefalse
- Launchabletrue
- ResourceFiletrue
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.bh
- CompilerBalloon Help
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.r
- CompilerRez
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypersrc
- FileExtension
- Compiler
- Precompilefalse
- Launchabletrue
- ResourceFiletrue
- IgnoredByMakefalse
-
-
- FileTypeshlb
- FileExtension
- Compiler
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- 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
- 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
-
-
- 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_projectTypeResource
- MWMerge_MacOS_outputNamewx_PPC.rsrc
- MWMerge_MacOS_outputCreator1381188932
- MWMerge_MacOS_outputType1920168547
- MWMerge_MacOS_suppressWarning0
- MWMerge_MacOS_copyFragments1
- MWMerge_MacOS_copyResources1
- MWMerge_MacOS_skipResources
-
-
- 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_outfilea.out
- MWProject_PPC_filecreator1061109567
- MWProject_PPC_filetype1095782476
- MWProject_PPC_size384
- MWProject_PPC_minsize384
- 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
- apprsrc.r
- MacOS
- Text
- Debug
-
-
- Name
- corersrc.r
- MacOS
- Text
- Debug
-
-
-
-
- Name
- apprsrc.r
- MacOS
-
-
- Name
- corersrc.r
- 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::include:
- PathFormatMacOS
- PathRootProject
-
- Recursivefalse
- HostFlagsAll
-
-
- SearchPath
- Path:generic:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:mac:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:common:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:zlib:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:png:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:jpeg:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:iodbc:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:regex:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:tiff:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:html:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SystemSearchPaths
-
- SearchPath
- Path:MSL:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:MacOS Support:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:(Debugger Extras):MetroNub Utilities:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
-
-
- LinkerMacOS PPC Linker
- PreLinker
- PostLinker
- TargetnameCarbon Debug
- OutputDirectory
- Path::lib:
- PathFormatMacOS
- PathRootProject
-
- SaveEntriesUsingRelativePathstrue
-
-
- 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.bh
- CompilerBalloon Help
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- 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.p
- CompilerMW Pascal PPC
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.pas
- CompilerMW Pascal PPC
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.pch
- CompilerMW C/C++ PPC
- Precompiletrue
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.pch++
- CompilerMW C/C++ PPC
- Precompiletrue
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.ppu
- CompilerMW Pascal PPC
- Precompiletrue
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.r
- CompilerRez
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.s
- CompilerPPCAsm
- 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_d.h
- MWFrontEnd_C_ansistrict0
- MWFrontEnd_C_mpwcnewline0
- MWFrontEnd_C_wchar_type1
- MWFrontEnd_C_enableexceptions1
- MWFrontEnd_C_dontreusestrings0
- MWFrontEnd_C_poolstrings0
- MWFrontEnd_C_dontinline0
- MWFrontEnd_C_useRTTI1
- MWFrontEnd_C_multibyteaware0
- MWFrontEnd_C_unsignedchars1
- MWFrontEnd_C_autoinline0
- MWFrontEnd_C_booltruefalse1
- MWFrontEnd_C_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_emptydecl0
- MWWarning_C_warn_possunwant0
- MWWarning_C_warn_unusedvar0
- MWWarning_C_warn_unusedarg0
- MWWarning_C_warn_extracomma0
- MWWarning_C_pedantic1
- MWWarning_C_warningerrors0
- MWWarning_C_warn_hidevirtual1
- MWWarning_C_warn_implicitconv0
- MWWarning_C_warn_notinlined0
- MWWarning_C_warn_structclass1
-
-
- 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
-
-
- ñ
-
-
-
-
- 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_showsym1
- MWDisassembler_PPC_shownames1
-
-
- GlobalOptimizer_PPC_optimizationlevelLevel0
- GlobalOptimizer_PPC_optforSpeed
-
-
- MWLinker_PPC_linksym1
- MWLinker_PPC_symfullpath1
- MWLinker_PPC_linkmap0
- MWLinker_PPC_nolinkwarnings0
- MWLinker_PPC_dontdeadstripinitcode1
- MWLinker_PPC_permitmultdefs0
- MWLinker_PPC_linkmodeFast
- MWLinker_PPC_initname
- MWLinker_PPC_mainname__start
- MWLinker_PPC_termname
- PPC Mach-O CodeGen
- 0001000001010000010000000001010101000000
-
- PPC Mach-O Linker
- 0001000000000100000100000000000000000000000000000000000000007374
- 6172740000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000
-
- PPC Mach-O Target
- 0001000005612E6F757400000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000
-
-
-
- MWPEF_exportsAll
- MWPEF_libfolder0
- MWPEF_sortcodeNone
- MWPEF_expandbss0
- MWPEF_sharedata0
- MWPEF_olddefversion0
- MWPEF_oldimpversion0
- MWPEF_currentversion0
- MWPEF_fragmentnamewxwin
- MWPEF_collapsereloads0
-
-
- MWProject_PPC_typeLibrary
- MWProject_PPC_outfilewx_CARBON_d.lib
- MWProject_PPC_filecreator1061109567
- MWProject_PPC_filetype1061109567
- MWProject_PPC_size0
- MWProject_PPC_minsize0
- MWProject_PPC_stacksize0
- MWProject_PPC_flags0
- 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'
-
-
-
- PathRelative
- Project
- :mac:
- :accel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :app.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :bitmap.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :bmpbuttn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :brush.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :button.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :checkbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :checklst.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :choice.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :clipbrd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :colordlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :colour.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :combobox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :control.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :cursor.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :data.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcclient.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcmemory.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcscreen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dialog.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dirdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :filedlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :font.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :frame.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gauge.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gdiobj.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :icon.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :joystick.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :listbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :main.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :mdi.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :menu.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :menuitem.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :minifram.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :msgdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :palette.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :pen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :printdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :radiobox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :radiobut.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :region.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :scrolbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :settings.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :slider.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :spinbutt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbmp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :stattext.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :tabctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :taskbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :textctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :thread.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :timer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :toolbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :utils.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :utilsexc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :wave.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :window.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :pnghand.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :printmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcprint.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :aga.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :uma.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckipc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :matrix.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :tbarbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagjpeg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :longlong.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :docmdi.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :appcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :odbc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :utilscmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynlib.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :extended.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :unzip.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :zstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :process.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :docview.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sizer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagall.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imaggif.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpcx.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmndata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ftp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :menucmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :string.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wfstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :stream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gdicmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :protocol.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cwy_tab.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :layout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :valgen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :intl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :list.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :socket.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :hash.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dlgcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gifdecod.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wxexpr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filefn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wincmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :resource.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wxchar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :memory.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :mstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :lboxcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_inet.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :event.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :image.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ipcbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :tokenzr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :txtstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filesys.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :url.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_zip.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :prntbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dcbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :object.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :http.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :module.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :validate.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :file.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :config.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fileconf.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :timercmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :framecmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textfile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynarray.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :choiccmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :helpbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ctrlsub.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ctrlcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :strconv.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckfile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :valtext.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :datstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckaddr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :variant.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dbtable.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fontcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ffile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :paper.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :clipcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpnm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpng.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagbmp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :zipstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :log.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :laywin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :busyinfo.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :listctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :textdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tipdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :numdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :sashwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dcpsg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :prntdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :prop.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :propform.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :panelg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :imaglist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tabg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :choicdgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :wizard.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :progdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :caret.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :statusbr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :logg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :proplist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :fontdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :splitter.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :helphtml.cpp
- MacOS
- Text
- Debug
-
-
- Name
- db.cpp
- MacOS
- Text
- Debug
-
-
- Name
- dobjcmn.cpp
- MacOS
- Text
- Debug
-
-
- Name
- print.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fontmap.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :geometry.cpp
- MacOS
- Text
- Debug
-
-
- Name
- colrdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontutil.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dataobj.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_list.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_tables.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_pre.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_image.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmprint.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlfilt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlpars.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmltag.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_hline.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :winpars.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlcell.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_layout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_fonts.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_links.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontenum.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :datetime.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :encconv.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :mimecmn.cpp
- MacOS
- Text
- Debug
-
-
- Name
- metafile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gsocket.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :macnotfy.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbrma.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :tooltip.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statlmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- ::include:
- :wx_cwc_d.pch++
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- ::include:
- :wx_cwc_d.pch
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagtiff.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :treectlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :notebmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_dflist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :treelay.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :treebase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cshelp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filename.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmdline.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dndcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :effects.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_mem.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :quantize.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :calctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridsel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dragimgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :msgdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :splash.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tbarsmpl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :helpctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :helpdata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :helpfrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tipwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dirmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :mimetmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :spinctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :xpmdecod.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagxpm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :glcanvas.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :nbkbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :scrlwing.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmdproc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dbgrid.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dircmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gaugecmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :popupcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :radiocmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dnd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :regex.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :containr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fddlgcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :fdrepdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :toplvcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :toplevel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:DirectoryCopy.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FileCopy.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FSpCompat.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FullPath.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:IterateDirectory.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreDesktopMgr.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFiles.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFilesExtras.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:Search.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :statbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :clntdata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dseldlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sysopt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textbuf.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :bmpbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagiff.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_style.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :artprov.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :artstd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :hashmap.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :iconbndl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagfill.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dirdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dcbuffer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dirctrlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :msgout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :settcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynload.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :display.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :grid.cpp
- MacOS
- Text
- Debug
-
-
- Name
- gridg.cpp
- MacOS
- Text
- Debug
-
-
-
-
- PathRelative
- Project
- :mac:
- :accel.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :app.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :bitmap.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :bmpbuttn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :brush.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :button.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :checkbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :checklst.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :choice.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :clipbrd.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :colordlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :colour.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :combobox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :control.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :cursor.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :data.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dc.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcclient.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcmemory.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcscreen.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dialog.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dirdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :filedlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :font.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :frame.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gauge.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gdiobj.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :icon.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :joystick.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :listbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :main.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :mdi.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :menu.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :menuitem.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :minifram.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :msgdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :palette.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :pen.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :printdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :radiobox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :radiobut.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :region.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :scrolbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :settings.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :slider.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :spinbutt.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbmp.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :stattext.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :tabctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :taskbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :textctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :thread.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :timer.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :toolbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :utils.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :utilsexc.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :wave.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :window.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :pnghand.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :printmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcprint.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :aga.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :uma.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckipc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :matrix.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :tbarbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagjpeg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :longlong.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :docmdi.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :appcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :odbc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :utilscmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynlib.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :extended.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :unzip.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :zstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :process.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :docview.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sizer.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagall.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imaggif.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpcx.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmndata.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ftp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :menucmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :string.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wfstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :stream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gdicmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :protocol.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cwy_tab.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :layout.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :valgen.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :intl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :list.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :socket.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :hash.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dlgcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gifdecod.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wxexpr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filefn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wincmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :resource.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wxchar.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :memory.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :mstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :lboxcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_inet.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :event.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :image.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ipcbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :tokenzr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :txtstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filesys.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :url.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_zip.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :prntbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dcbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :object.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :http.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :module.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :validate.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :file.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :config.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fileconf.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :timercmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :framecmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textfile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynarray.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :choiccmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :helpbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ctrlsub.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ctrlcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :strconv.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckfile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :valtext.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :datstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckaddr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :variant.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dbtable.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fontcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ffile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :paper.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :clipcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpnm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpng.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagbmp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :zipstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :log.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :laywin.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :busyinfo.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :listctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :textdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tipdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :numdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :sashwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dcpsg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :prntdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :prop.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :propform.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :panelg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :imaglist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tabg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :choicdgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :wizard.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :progdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :caret.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :statusbr.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :logg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :proplist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :fontdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :splitter.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :helphtml.cpp
- MacOS
-
-
- Name
- db.cpp
- MacOS
-
-
- Name
- dobjcmn.cpp
- MacOS
-
-
- Name
- print.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fontmap.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :geometry.cpp
- MacOS
-
-
- Name
- colrdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontutil.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dataobj.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_list.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_tables.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_pre.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_image.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmprint.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlfilt.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlpars.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmltag.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_hline.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :winpars.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlcell.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_layout.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_fonts.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_links.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontenum.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :datetime.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :encconv.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :mimecmn.cpp
- MacOS
-
-
- Name
- metafile.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gsocket.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :macnotfy.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbrma.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :tooltip.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statlmac.cpp
- MacOS
-
-
- PathRelative
- Project
- ::include:
- :wx_cwc_d.pch++
- MacOS
-
-
- PathRelative
- Project
- ::include:
- :wx_cwc_d.pch
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagtiff.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :treectlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :notebmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_dflist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :treelay.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :treebase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cshelp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filename.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmdline.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dndcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :effects.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_mem.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :quantize.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :calctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridsel.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dragimgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :msgdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :splash.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tbarsmpl.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :helpctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :helpdata.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :helpfrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tipwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dirmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :mimetmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :spinctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :xpmdecod.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagxpm.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :glcanvas.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :nbkbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :scrlwing.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmdproc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dbgrid.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dircmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gaugecmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :popupcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :radiocmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dnd.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :regex.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :containr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fddlgcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :fdrepdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :toplvcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :toplevel.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:DirectoryCopy.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FileCopy.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FSpCompat.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FullPath.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:IterateDirectory.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreDesktopMgr.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFiles.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFilesExtras.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:Search.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :statbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :clntdata.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dseldlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sysopt.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textbuf.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :bmpbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagiff.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_style.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :artprov.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :artstd.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :hashmap.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :iconbndl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagfill.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dirdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dcbuffer.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dirctrlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :msgout.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :settcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynload.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :display.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :grid.cpp
- MacOS
-
-
- Name
- gridg.cpp
- 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::include:
- PathFormatMacOS
- PathRootProject
-
- Recursivefalse
- HostFlagsAll
-
-
- SearchPath
- Path:generic:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:mac:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:common:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:zlib:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:png:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:jpeg:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:iodbc:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:regex:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:tiff:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:html:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SystemSearchPaths
-
- SearchPath
- Path:MSL:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:MacOS Support:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path:(Debugger Extras):MetroNub Utilities:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
-
-
- LinkerMacOS PPC Linker
- PreLinker
- PostLinker
- TargetnameCarbon Release
- OutputDirectory
- Path::lib:
- PathFormatMacOS
- PathRootProject
-
- SaveEntriesUsingRelativePathstrue
-
-
- 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.bh
- CompilerBalloon Help
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- 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.p
- CompilerMW Pascal PPC
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.pas
- CompilerMW Pascal PPC
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.pch
- CompilerMW C/C++ PPC
- Precompiletrue
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.pch++
- CompilerMW C/C++ PPC
- Precompiletrue
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.ppu
- CompilerMW Pascal PPC
- Precompiletrue
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.r
- CompilerRez
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.s
- CompilerPPCAsm
- 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_mpwcnewline0
- MWFrontEnd_C_wchar_type1
- MWFrontEnd_C_enableexceptions1
- MWFrontEnd_C_dontreusestrings0
- MWFrontEnd_C_poolstrings0
- MWFrontEnd_C_dontinline0
- MWFrontEnd_C_useRTTI1
- MWFrontEnd_C_multibyteaware0
- MWFrontEnd_C_unsignedchars1
- MWFrontEnd_C_autoinline0
- MWFrontEnd_C_booltruefalse1
- MWFrontEnd_C_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
-
-
- ñ
-
-
-
-
- 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_optimizationlevelLevel2
- GlobalOptimizer_PPC_optforSpeed
-
-
- MWLinker_PPC_linksym1
- MWLinker_PPC_symfullpath1
- MWLinker_PPC_linkmap0
- MWLinker_PPC_nolinkwarnings0
- MWLinker_PPC_dontdeadstripinitcode1
- MWLinker_PPC_permitmultdefs0
- MWLinker_PPC_linkmodeFast
- MWLinker_PPC_initname
- MWLinker_PPC_mainname__start
- MWLinker_PPC_termname
- PPC Mach-O CodeGen
- 0001000001010000010000000001010101000000
-
- PPC Mach-O Linker
- 0001000000000100000100000000000000000000000000000000000000007374
- 6172740000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000
-
- PPC Mach-O Target
- 0001000005612E6F757400000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000003F3F3F3F4D41504C0000004000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000
-
-
-
- MWPEF_exportsAll
- MWPEF_libfolder0
- MWPEF_sortcodeNone
- MWPEF_expandbss0
- MWPEF_sharedata0
- MWPEF_olddefversion0
- MWPEF_oldimpversion0
- MWPEF_currentversion0
- MWPEF_fragmentnamewxwin
- MWPEF_collapsereloads0
-
-
- MWProject_PPC_typeLibrary
- MWProject_PPC_outfilewx_CARBON.lib
- MWProject_PPC_filecreator1061109567
- MWProject_PPC_filetype1061109567
- MWProject_PPC_size0
- MWProject_PPC_minsize0
- MWProject_PPC_stacksize0
- MWProject_PPC_flags0
- 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'
-
-
-
- PathRelative
- Project
- :mac:
- :accel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :app.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :bmpbuttn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :brush.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :button.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :checkbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :checklst.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :choice.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :clipbrd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :colordlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :colour.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :combobox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :control.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :cursor.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :data.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcclient.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcmemory.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcscreen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dialog.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dirdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :filedlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :font.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :frame.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gauge.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gdiobj.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :icon.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :joystick.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :listbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :main.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :mdi.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :menu.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :menuitem.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :minifram.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :msgdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :palette.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :pen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :print.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :printdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :radiobox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :radiobut.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :region.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :scrolbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :settings.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :slider.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :spinbutt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbmp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbox.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :stattext.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :tabctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :taskbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :textctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :thread.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :timer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :toolbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :utils.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :utilsexc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :wave.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :window.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :pnghand.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :printmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dcprint.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :aga.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :uma.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckipc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :matrix.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :tbarbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagjpeg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :longlong.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :docmdi.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :appcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :odbc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :utilscmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynlib.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :extended.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :unzip.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :zstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :process.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :docview.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sizer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dobjcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagall.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imaggif.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpcx.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmndata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ftp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :menucmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :string.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wfstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :stream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gdicmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :protocol.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cwy_tab.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :layout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :valgen.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :intl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :list.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :socket.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :hash.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dlgcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gifdecod.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wxexpr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filefn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wincmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :resource.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :wxchar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :memory.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :mstream.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :lboxcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_inet.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :event.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :image.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ipcbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :tokenzr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :txtstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filesys.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :url.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_zip.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :prntbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dcbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :object.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :http.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :module.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :validate.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :file.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :config.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fileconf.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :timercmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :framecmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textfile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynarray.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :choiccmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :helpbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :db.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ctrlsub.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ctrlcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :strconv.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckfile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :valtext.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :datstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sckaddr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :variant.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dbtable.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fontcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :ffile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :paper.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :clipcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpnm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagpng.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagbmp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :zipstrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :log.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :laywin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :busyinfo.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :listctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :textdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :numdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :sashwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dcpsg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :prntdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :prop.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :propform.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :panelg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :imaglist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tabg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :choicdgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :wizard.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :progdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :caret.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :statusbr.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :logg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :proplist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :fontdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :splitter.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :helphtml.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fontmap.cpp
- MacOS
- Text
- Debug
-
-
- Name
- tipdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :geometry.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontutil.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dataobj.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_list.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_tables.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_pre.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_image.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmprint.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlfilt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlpars.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmltag.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_hline.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :winpars.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :htmlcell.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_layout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_fonts.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_links.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :fontenum.cpp
- MacOS
- Text
- Debug
-
-
- Name
- colrdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :datetime.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :encconv.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :mimecmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :gsocket.c
- MacOS
- Text
- Debug
-
-
- Name
- metafile.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :macnotfy.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statbrma.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :tooltip.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :statlmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- ::include:
- :wx_cwc.pch++
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- ::include:
- :wx_cwc.pch
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagtiff.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :treectlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :notebmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_dflist.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :treelay.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :treebase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cshelp.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :filename.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmdline.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dndcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :effects.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fs_mem.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :quantize.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :calctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridsel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dragimgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :msgdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :splash.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tbarsmpl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :helpctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :helpdata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :helpfrm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :tipwin.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dirmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :mimetmac.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :spinctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :xpmdecod.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagxpm.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :glcanvas.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :nbkbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :scrlwing.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :cmdproc.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dbgrid.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dircmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :gaugecmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :popupcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :radiocmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :gridctrl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :dnd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :regex.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :containr.cpp
- MacOS
- Text
- Debug
-
-
- Name
- bitmap.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :fddlgcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :fdrepdlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :toplvcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :toplevel.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:DirectoryCopy.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FileCopy.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FSpCompat.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:FullPath.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:IterateDirectory.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreDesktopMgr.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFiles.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFilesExtras.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :morefile:Search.c
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :statbar.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :clntdata.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dseldlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :sysopt.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :textbuf.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :bmpbase.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagiff.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :html:
- :m_style.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :artprov.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :artstd.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :hashmap.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :iconbndl.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :imagfill.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dirdlgg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dcbuffer.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :dirctrlg.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :msgout.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :common:
- :dynload.cpp
- MacOS
- Text
- Debug
-
-
- Name
- settcmn.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :mac:
- :display.cpp
- MacOS
- Text
- Debug
-
-
- PathRelative
- Project
- :generic:
- :grid.cpp
- MacOS
- Text
- Debug
-
-
-
-
- PathRelative
- Project
- :mac:
- :accel.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :app.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :bmpbuttn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :brush.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :button.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :checkbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :checklst.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :choice.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :clipbrd.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :colordlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :colour.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :combobox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :control.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :cursor.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :data.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dc.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcclient.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcmemory.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcscreen.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dialog.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dirdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :filedlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :font.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :frame.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gauge.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gdiobj.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :icon.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :joystick.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :listbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :main.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :mdi.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :menu.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :menuitem.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :minifram.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :msgdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :palette.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :pen.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :print.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :printdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :radiobox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :radiobut.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :region.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :scrolbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :settings.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :slider.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :spinbutt.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbmp.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbox.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :stattext.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :tabctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :taskbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :textctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :thread.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :timer.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :toolbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :utils.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :utilsexc.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :wave.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :window.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :pnghand.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :printmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dcprint.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :aga.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :uma.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckipc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :matrix.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :tbarbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagjpeg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :longlong.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :docmdi.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :appcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :odbc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :utilscmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynlib.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :extended.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :unzip.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :zstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :process.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :docview.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sizer.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dobjcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagall.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imaggif.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpcx.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmndata.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ftp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :menucmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :string.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wfstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :stream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gdicmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :protocol.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cwy_tab.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :layout.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :valgen.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :intl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :list.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :socket.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :hash.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dlgcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gifdecod.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wxexpr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filefn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wincmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :resource.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :wxchar.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :memory.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :mstream.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :lboxcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_inet.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :event.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :image.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ipcbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :tokenzr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :txtstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filesys.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :url.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_zip.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :prntbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dcbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :object.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :http.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :module.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :validate.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :file.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :config.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fileconf.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :timercmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :framecmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textfile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynarray.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :choiccmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :helpbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :db.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ctrlsub.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ctrlcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :strconv.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckfile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :valtext.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :datstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sckaddr.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :variant.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dbtable.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fontcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :ffile.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :paper.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :clipcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpnm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagpng.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagbmp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :zipstrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :log.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :laywin.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :busyinfo.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :listctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :textdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :numdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :sashwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dcpsg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :prntdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :prop.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :propform.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :panelg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :imaglist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tabg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :choicdgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :wizard.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :progdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :caret.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :statusbr.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :logg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :proplist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :fontdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :splitter.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :helphtml.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fontmap.cpp
- MacOS
-
-
- Name
- tipdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :geometry.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontutil.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dataobj.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_list.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_tables.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_pre.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_image.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmprint.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlfilt.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlpars.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmltag.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_hline.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :winpars.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :htmlcell.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_layout.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_fonts.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_links.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :fontenum.cpp
- MacOS
-
-
- Name
- colrdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :datetime.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :encconv.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :mimecmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :gsocket.c
- MacOS
-
-
- Name
- metafile.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :macnotfy.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statbrma.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :tooltip.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :statlmac.cpp
- MacOS
-
-
- PathRelative
- Project
- ::include:
- :wx_cwc.pch++
- MacOS
-
-
- PathRelative
- Project
- ::include:
- :wx_cwc.pch
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagtiff.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :treectlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :notebmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_dflist.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :treelay.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :treebase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cshelp.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :filename.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmdline.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dndcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :effects.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fs_mem.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :quantize.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :calctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridsel.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dragimgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :msgdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :splash.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tbarsmpl.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :helpctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :helpdata.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :helpfrm.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :tipwin.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dirmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :mimetmac.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :spinctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :xpmdecod.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagxpm.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :glcanvas.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :nbkbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :scrlwing.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :cmdproc.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dbgrid.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dircmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :gaugecmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :popupcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :radiocmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :gridctrl.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :dnd.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :regex.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :containr.cpp
- MacOS
-
-
- Name
- bitmap.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :fddlgcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :fdrepdlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :toplvcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :toplevel.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:DirectoryCopy.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FileCopy.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FSpCompat.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:FullPath.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:IterateDirectory.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreDesktopMgr.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFiles.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:MoreFilesExtras.c
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :morefile:Search.c
- MacOS
-
-
- PathRelative
- Project
- :common:
- :statbar.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :clntdata.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dseldlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :sysopt.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :textbuf.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :bmpbase.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagiff.cpp
- MacOS
-
-
- PathRelative
- Project
- :html:
- :m_style.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :artprov.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :artstd.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :hashmap.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :iconbndl.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :imagfill.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dirdlgg.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dcbuffer.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :dirctrlg.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :msgout.cpp
- MacOS
-
-
- PathRelative
- Project
- :common:
- :dynload.cpp
- MacOS
-
-
- Name
- settcmn.cpp
- MacOS
-
-
- PathRelative
- Project
- :mac:
- :display.cpp
- MacOS
-
-
- PathRelative
- Project
- :generic:
- :grid.cpp
- MacOS
-
-
-
-
- Carbon Resources
-
-
-
- UserSourceTrees
-
-
- CustomColor1
- Red0
- Green32767
- Blue0
-
- CustomColor2
- Red0
- Green32767
- Blue0
-
- CustomColor3
- Red0
- Green32767
- Blue0
-
- CustomColor4
- Red0
- Green32767
- Blue0
-
-
-
- AlwaysSearchUserPathsfalse
- InterpretDOSAndUnixPathsfalse
- UserSearchPaths
-
- SearchPath
- Path:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SearchPath
- Path::lib:
- PathFormatMacOS
- PathRootProject
-
- Recursivetrue
- HostFlagsAll
-
-
- SystemSearchPaths
-
- SearchPath
- Path:MacOS Support:
- PathFormatMacOS
- PathRootCodeWarrior
-
- Recursivetrue
- HostFlagsAll
-
-
-
-
- LinkerMacOS Merge
- PreLinker
- PostLinker
- TargetnameCarbon Resources
- OutputDirectory
- Path::lib:
- PathFormatMacOS
- PathRootProject
-
- SaveEntriesUsingRelativePathsfalse
-
-
- FileMappings
-
- FileTypeAPPL
- FileExtension
- Compiler
- Precompilefalse
- Launchabletrue
- ResourceFiletrue
- IgnoredByMakefalse
-
-
- FileTypeAppl
- FileExtension
- Compiler
- Precompilefalse
- Launchabletrue
- ResourceFiletrue
- IgnoredByMakefalse
-
-
- FileTypeRSRC
- FileExtension
- Compiler
- Precompilefalse
- Launchabletrue
- ResourceFiletrue
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.bh
- CompilerBalloon Help
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypeTEXT
- FileExtension.r
- CompilerRez
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- IgnoredByMakefalse
-
-
- FileTypersrc
- FileExtension
- Compiler
- Precompilefalse
- Launchabletrue
- ResourceFiletrue
- IgnoredByMakefalse
-
-
- FileTypeshlb
- FileExtension
- Compiler
- Precompilefalse
- Launchablefalse
- ResourceFilefalse
- 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
- 0000000000000000000000000000000004AC1A40100000000000010004AC2350
- 00020000000000000000000004AC11E000000000000000000000000000000000
- 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
- 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
-
-
- 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_projectTypeResource
- MWMerge_MacOS_outputNamewx_CARBON.rsrc
- MWMerge_MacOS_outputCreator1381188932
- MWMerge_MacOS_outputType1920168547
- MWMerge_MacOS_suppressWarning0
- MWMerge_MacOS_copyFragments1
- MWMerge_MacOS_copyResources1
- MWMerge_MacOS_skipResources
-
-
- 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_outfilea.out
- MWProject_PPC_filecreator1061109567
- MWProject_PPC_filetype1095782476
- MWProject_PPC_size384
- MWProject_PPC_minsize384
- 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
- apprsrc.r
- MacOS
- Text
- Debug
-
-
- Name
- corersrc.r
- MacOS
- Text
- Debug
-
-
- Name
- carbrsrc.r
- MacOS
- Text
-
-
-
-
-
- Name
- apprsrc.r
- MacOS
-
-
- Name
- corersrc.r
- MacOS
-
-
- Name
- carbrsrc.r
- MacOS
-
-
-
-
-
-
- All
- Carbon Release
- Carbon Debug
- Carbon Resources
- Classic Release
- Classic Debug
- Classic Resources
-
-
-
- headers
-
- Classic Release
- Name
- wx_cw.pch
- MacOS
-
-
- Classic Release
- Name
- wx_cw.pch++
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- ::include:
- :wx_cw_d.pch
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- ::include:
- :wx_cw_d.pch++
- MacOS
-
-
- Carbon Release
- PathRelative
- Project
- ::include:
- :wx_cwc.pch
- MacOS
-
-
- Carbon Release
- PathRelative
- Project
- ::include:
- :wx_cwc.pch++
- MacOS
-
-
- Carbon Debug
- PathRelative
- Project
- ::include:
- :wx_cwc_d.pch
- MacOS
-
-
- Carbon Debug
- PathRelative
- Project
- ::include:
- :wx_cwc_d.pch++
- MacOS
-
-
- common
-
- Classic Debug
- PathRelative
- Project
- :common:
- :appcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :artprov.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :artstd.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :bmpbase.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :choiccmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :clipcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :clntdata.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :cmdline.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :cmdproc.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :cmndata.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :config.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :containr.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :cshelp.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :ctrlcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :ctrlsub.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :cwy_tab.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :datetime.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :datstrm.cpp
- MacOS
-
-
- Classic Debug
- Name
- db.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :dbgrid.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :dbtable.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :dcbase.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :dircmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :dlgcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :dndcmn.cpp
- MacOS
-
-
- Classic Debug
- Name
- dobjcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :docmdi.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :docview.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :dseldlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :dynarray.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :dynlib.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :dynload.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :effects.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :encconv.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :event.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :extended.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :fddlgcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :ffile.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :file.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :fileconf.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :filefn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :filename.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :filesys.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :fontcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :fontmap.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :framecmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :fs_inet.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :fs_mem.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :fs_zip.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :ftp.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :gaugecmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :gdicmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :geometry.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :gifdecod.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :hash.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :hashmap.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :helpbase.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :http.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :iconbndl.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imagall.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imagbmp.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :image.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imagfill.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imaggif.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imagiff.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imagjpeg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imagpcx.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imagpng.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imagpnm.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imagtiff.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :imagxpm.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :intl.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :ipcbase.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :layout.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :lboxcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :list.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :log.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :longlong.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :matrix.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :memory.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :menucmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :mimecmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :module.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :msgout.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :mstream.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :nbkbase.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :object.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :odbc.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :paper.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :popupcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :prntbase.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :process.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :protocol.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :quantize.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :radiocmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :regex.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :resource.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :sckaddr.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :sckfile.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :sckipc.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :sckstrm.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :settcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :sizer.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :socket.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :sysopt.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :statbar.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :strconv.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :stream.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :string.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :tbarbase.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :textbuf.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :textcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :textfile.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :timercmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :tokenzr.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :toplvcmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :treebase.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :txtstrm.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :unzip.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :url.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :utilscmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :valgen.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :validate.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :valtext.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :variant.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :wfstream.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :wincmn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :wxchar.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :wxexpr.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :xpmdecod.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :zipstrm.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :common:
- :zstream.cpp
- MacOS
-
-
- generic
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :busyinfo.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :calctrl.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :caret.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :choicdgg.cpp
- MacOS
-
-
- Classic Debug
- Name
- colrdlgg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :dcbuffer.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :dcpsg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :dirctrlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :dirdlgg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :dragimgg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :fdrepdlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :fontdlgg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :gridctrl.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :grid.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :gridg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :gridsel.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :helphtml.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :imaglist.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :laywin.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :listctrl.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :logg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :msgdlgg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :numdlgg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :panelg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :prntdlgg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :progdlgg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :prop.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :propform.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :proplist.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :sashwin.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :scrlwing.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :splash.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :splitter.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :statusbr.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :tabg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :tbarsmpl.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :textdlgg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :tipdlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :tipwin.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :treectlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :treelay.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :generic:
- :wizard.cpp
- MacOS
-
-
- html
- modules
-
- Classic Debug
- PathRelative
- Project
- :html:
- :m_dflist.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :m_fonts.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :m_hline.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :m_image.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :m_layout.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :m_links.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :m_list.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :m_pre.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :m_style.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :m_tables.cpp
- MacOS
-
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :helpctrl.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :helpdata.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :helpfrm.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :htmlcell.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :htmlfilt.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :htmlpars.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :htmltag.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :htmlwin.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :htmprint.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :html:
- :winpars.cpp
- MacOS
-
-
- mac
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :accel.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :aga.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :app.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :bitmap.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :bmpbuttn.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :brush.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :button.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :checkbox.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :checklst.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :choice.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :clipbrd.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :colordlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :colour.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :combobox.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :control.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :cursor.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :data.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :dataobj.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :dc.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :dcclient.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :dcmemory.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :dcprint.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :dcscreen.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :dialog.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :dirdlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :dirmac.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :display.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :dnd.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :filedlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :font.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :fontdlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :fontenum.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :fontutil.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :frame.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :gauge.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :gdiobj.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :glcanvas.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :gsocket.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :icon.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :joystick.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :listbox.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :macnotfy.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :main.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :mdi.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :menu.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :menuitem.cpp
- MacOS
-
-
- Classic Debug
- Name
- metafile.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :mimetmac.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :minifram.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :msgdlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :notebmac.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :palette.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :pen.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :pnghand.cpp
- MacOS
-
-
- Classic Debug
- Name
- print.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :printdlg.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :printmac.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :radiobox.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :radiobut.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :region.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :scrolbar.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :settings.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :slider.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :spinbutt.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :spinctrl.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :statbmp.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :statbox.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :statbrma.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :statlmac.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :stattext.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :tabctrl.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :taskbar.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :textctrl.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :thread.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :timer.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :toolbar.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :tooltip.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :toplevel.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :uma.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :utils.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :utilsexc.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :wave.cpp
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :window.cpp
- MacOS
-
- morefile
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :morefile:DirectoryCopy.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :morefile:FileCopy.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :morefile:FSpCompat.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :morefile:FullPath.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :morefile:IterateDirectory.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :morefile:MoreDesktopMgr.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :morefile:MoreFiles.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :morefile:MoreFilesExtras.c
- MacOS
-
-
- Classic Debug
- PathRelative
- Project
- :mac:
- :morefile:Search.c
- MacOS
-
-
-
- mac resources
-
- Classic Resources
- Name
- apprsrc.r
- MacOS
-
-
- Classic Resources
- Name
- corersrc.r
- MacOS
-
-
- Carbon Resources
- Name
- carbrsrc.r
- MacOS
-
-
-
-
-
+
\ No newline at end of file
diff --git a/src/xrc/makefile.wat b/src/xrc/makefile.wat
index a2e3f6aa38..3d489d8aea 100644
--- a/src/xrc/makefile.wat
+++ b/src/xrc/makefile.wat
@@ -2,30 +2,51 @@
WXDIR = ..\..\..
-EXTRACPPFLAGS=/Id:\libxml\libxml2-2.1.1
+#XMLDIR=
+!error modify makefile.wat to include the path to the XML library
+
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include;-I$(XMLDIR)\libxml2-2.1.1
!include $(WXDIR)\src\makewat.env
-WXXMLLIB = $(WXDIR)\lib\wxxrc.lib
-THISDIR = $(WXDIR)\contrib\src\xrc
+LIBTARGET = $(WXDIR)\lib\wxxrc_w.lib
-NAME = wxxrc
-LNK = $(name).lnk
-
-OBJECTS=xml.obj xmlres.obj xmlrsall.obj &
- xh_bttn.obj xh_chckb.obj xh_chckl.obj xh_choic.obj xh_combo.obj xh_dlg.obj &
- xh_gauge.obj xh_html.obj xh_menu.obj xh_notbk.obj xh_panel.obj xh_radbt.obj &
- xh_radbx.obj xh_sizer.obj xh_slidr.obj xh_spin.obj xh_stbmp.obj xh_sttxt.obj &
- xh_text.obj xh_listb.obj xh_toolb.obj xh_stlin.obj xh_bmp.obj &
- xh_bmpbt.obj xh_cald.obj xh_listc.obj xh_scrol.obj xh_stbox.obj &
- xh_tree.obj xh_unkwn.obj xh_frame.obj xh_scwin.obj xh_split.obj
-
-
-all: $(WXXMLLIB)
-
-$(WXXMLLIB): $(OBJECTS)
- *wlib /b /c /n /P=256 $(WXXMLLIB) $(OBJECTS)
-
-clean: .SYMBOLIC
- -erase *.obj *.bak *.err *.pch $(WXXMLLIB) *.lbc
+OBJECTS=&
+ $(OUTPUTDIR)\xml.obj &
+ $(OUTPUTDIR)\xmlres.obj &
+ $(OUTPUTDIR)\xmlrsall.obj &
+ $(OUTPUTDIR)\xh_bttn.obj &
+ $(OUTPUTDIR)\xh_chckb.obj &
+ $(OUTPUTDIR)\xh_chckl.obj &
+ $(OUTPUTDIR)\xh_choic.obj &
+ $(OUTPUTDIR)\xh_combo.obj &
+ $(OUTPUTDIR)\xh_dlg.obj &
+ $(OUTPUTDIR)\xh_gauge.obj &
+ $(OUTPUTDIR)\xh_html.obj &
+ $(OUTPUTDIR)\xh_menu.obj &
+ $(OUTPUTDIR)\xh_notbk.obj &
+ $(OUTPUTDIR)\xh_panel.obj &
+ $(OUTPUTDIR)\xh_radbt.obj &
+ $(OUTPUTDIR)\xh_radbx.obj &
+ $(OUTPUTDIR)\xh_sizer.obj &
+ $(OUTPUTDIR)\xh_slidr.obj &
+ $(OUTPUTDIR)\xh_spin.obj &
+ $(OUTPUTDIR)\xh_stbmp.obj &
+ $(OUTPUTDIR)\xh_sttxt.obj &
+ $(OUTPUTDIR)\xh_text.obj &
+ $(OUTPUTDIR)\xh_listb.obj&
+ $(OUTPUTDIR)\xh_toolb.obj &
+ $(OUTPUTDIR)\xh_stlin.obj &
+ $(OUTPUTDIR)\xh_bmp.obj &
+ $(OUTPUTDIR)\xh_bmpbt.obj &
+ $(OUTPUTDIR)\xh_cald.obj &
+ $(OUTPUTDIR)\xh_listc.obj &
+ $(OUTPUTDIR)\xh_scrol.obj &
+ $(OUTPUTDIR)\xh_stbox.obj &
+ $(OUTPUTDIR)\xh_tree.obj &
+ $(OUTPUTDIR)\xh_unkwn.obj &
+ $(OUTPUTDIR)\xh_frame.obj &
+ $(OUTPUTDIR)\xh_scwin.obj &
+ $(OUTPUTDIR)\xh_split.obj
+!include $(WXDIR)\src\makelib.wat
diff --git a/src/zlib/makefile.wat b/src/zlib/makefile.wat
index 81b815ef89..f6fbce4436 100644
--- a/src/zlib/makefile.wat
+++ b/src/zlib/makefile.wat
@@ -4,12 +4,13 @@
# Author: Vadim Zeitlin
# Created: 21.01.03
# RCS-ID: $Id$
-# Copyright: (c) 2003 Vadim Zeitlin
+# Copyright: (c) 2003 Vadim Zeitlin
+# Changelist: 2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
# Licence: wxWindows licence
##############################################################################
WXDIR = ..\..
-OUTPUTDIR=watcom\
+OUTPUTDIR=watcom
!include $(WXDIR)\src\makewat.env
@@ -17,20 +18,20 @@ LIBTARGET=$(WXDIR)\lib\zlib$(WATCOM_SUFFIX).lib
# variables
OBJECTS = &
- $(OUTPUTDIR)adler32.obj &
- $(OUTPUTDIR)compress.obj &
- $(OUTPUTDIR)crc32.obj &
- $(OUTPUTDIR)gzio.obj &
- $(OUTPUTDIR)uncompr.obj &
- $(OUTPUTDIR)deflate.obj &
- $(OUTPUTDIR)trees.obj &
- $(OUTPUTDIR)zutil.obj &
- $(OUTPUTDIR)inflate.obj &
- $(OUTPUTDIR)infblock.obj &
- $(OUTPUTDIR)inftrees.obj &
- $(OUTPUTDIR)infcodes.obj &
- $(OUTPUTDIR)infutil.obj &
- $(OUTPUTDIR)inffast.obj
+ $(OUTPUTDIR)\adler32.obj &
+ $(OUTPUTDIR)\compress.obj &
+ $(OUTPUTDIR)\crc32.obj &
+ $(OUTPUTDIR)\gzio.obj &
+ $(OUTPUTDIR)\uncompr.obj &
+ $(OUTPUTDIR)\deflate.obj &
+ $(OUTPUTDIR)\trees.obj &
+ $(OUTPUTDIR)\zutil.obj &
+ $(OUTPUTDIR)\inflate.obj &
+ $(OUTPUTDIR)\infblock.obj &
+ $(OUTPUTDIR)\inftrees.obj &
+ $(OUTPUTDIR)\infcodes.obj &
+ $(OUTPUTDIR)\infutil.obj &
+ $(OUTPUTDIR)\inffast.obj
# all: test
@@ -39,7 +40,7 @@ all: $(OUTPUTDIR) $(LIBTARGET) .SYMBOLIC
$(OUTPUTDIR):
@if not exist $^@ mkdir $^@
-LBCFILE=$(OUTPUTDIR)zlib.lbc
+LBCFILE=$(OUTPUTDIR)\zlib.lbc
$(LIBTARGET) : $(OBJECTS)
%create $(LBCFILE)
@for %i in ( $(OBJECTS) ) do @%append $(LBCFILE) +%i
@@ -49,3 +50,4 @@ clean: .SYMBOLIC
-erase *.obj
-erase *.exe
-erase $(LIBTARGET)
+
diff --git a/utils/wxrc/makefile.wat b/utils/wxrc/makefile.wat
index 4a5d318872..ac1ff9c3fa 100644
--- a/utils/wxrc/makefile.wat
+++ b/utils/wxrc/makefile.wat
@@ -4,10 +4,12 @@
#
WXDIR = $(%WXWIN)
+EXTRACPPFLAGS = -I$(WXDIR)\contrib\include
+THISDIR = $(WXDIR)\contrib\utils\wxrc
PROGRAM = wxrc
-EXTRALIBS = $(WXDIR)\lib\wxxrc.lib
-OBJECTS = $(PROGRAM).obj
+EXTRALIBS = $(WXDIR)\lib\wxxrc_w.lib
+OBJECTS = $(OUTPUTDIR)\$(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat