From 41268e014d66a6af68d97df76f8483936d13270c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 26 Apr 2021 15:18:39 +0100 Subject: [PATCH 1/3] Remove MSVS 2003, a.k.a. MSVC 7, support from the code It was probably not supported since quite some time anyhow, because wx own code uses CallAfter() which wouldn't compile with it, but now we can can get rid of wxHAS_CALL_AFTER checks too. --- include/wx/compiler.h | 6 ++---- include/wx/event.h | 17 +++-------------- src/common/event.cpp | 2 -- 3 files changed, 5 insertions(+), 20 deletions(-) diff --git a/include/wx/compiler.h b/include/wx/compiler.h index 416a902d3f..48bc4b6287 100644 --- a/include/wx/compiler.h +++ b/include/wx/compiler.h @@ -35,10 +35,8 @@ define special symbols for different VC version instead of writing tests for magic numbers such as 1200, 1300 &c repeatedly */ -#if __VISUALC__ < 1300 -# error "This Visual C++ version is not supported any longer (at least MSVC 2003 required)." -#elif __VISUALC__ < 1400 -# define __VISUALC7__ +#if __VISUALC__ < 1400 +# error "This Visual C++ version is not supported any longer (at least MSVC 2005 required)." #elif __VISUALC__ < 1500 # define __VISUALC8__ #elif __VISUALC__ < 1600 diff --git a/include/wx/event.h b/include/wx/event.h index c649d2fb8f..f5c32a3d77 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -31,14 +31,10 @@ #include "wx/vector.h" #include "wx/meta/convertible.h" +#include "wx/meta/removeref.h" -// Currently VC7 is known to not be able to compile CallAfter() code, so -// disable it for it (FIXME-VC7). -#if !defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(8) - #include "wx/meta/removeref.h" - - #define wxHAS_CALL_AFTER -#endif +// This is now always defined, but keep it for backwards compatibility. +#define wxHAS_CALL_AFTER // ---------------------------------------------------------------------------- // forward declarations @@ -1373,8 +1369,6 @@ private: // done asynchronously, i.e. at some later time, instead of immediately when // the event object is constructed. -#ifdef wxHAS_CALL_AFTER - // This is a base class used to process all method calls. class wxAsyncMethodCallEvent : public wxEvent { @@ -1555,9 +1549,6 @@ private: FunctorType m_fn; }; -#endif // wxHAS_CALL_AFTER - - #if wxUSE_GUI @@ -3705,7 +3696,6 @@ public: static void WXConsumeException(); #endif // wxUSE_EXCEPTIONS -#ifdef wxHAS_CALL_AFTER // Asynchronous method calls: these methods schedule the given method // pointer for a later call (during the next idle event loop iteration). // @@ -3749,7 +3739,6 @@ public: { QueueEvent(new wxAsyncMethodCallEventFunctor(this, fn)); } -#endif // wxHAS_CALL_AFTER // Connecting and disconnecting diff --git a/src/common/event.cpp b/src/common/event.cpp index a2c64b72a0..4b1409cb24 100644 --- a/src/common/event.cpp +++ b/src/common/event.cpp @@ -1615,7 +1615,6 @@ bool wxEvtHandler::TryHereOnly(wxEvent& event) if ( GetEventHashTable().HandleEvent(event, this) ) return true; -#ifdef wxHAS_CALL_AFTER // There is an implicit entry for async method calls processing in every // event handler: if ( event.GetEventType() == wxEVT_ASYNC_METHOD_CALL && @@ -1624,7 +1623,6 @@ bool wxEvtHandler::TryHereOnly(wxEvent& event) static_cast(event).Execute(); return true; } -#endif // wxHAS_CALL_AFTER // We don't have a handler for this event. return false; From 8b854d2f92d45c1bce9f115b16e88b876276ff24 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 26 Apr 2021 16:24:02 +0200 Subject: [PATCH 2/3] Remove MSVC 7 project files and support for generating them This compiler is not supported any longer. --- build/bakefiles/Bakefiles.bkgen | 2 +- build/msw/wx_vc7.sln | 248 -- build/msw/wx_vc7_adv.vcproj | 418 --- build/msw/wx_vc7_aui.vcproj | 496 --- build/msw/wx_vc7_base.vcproj | 1399 -------- build/msw/wx_vc7_core.vcproj | 3160 ----------------- build/msw/wx_vc7_gl.vcproj | 434 --- build/msw/wx_vc7_html.vcproj | 575 --- build/msw/wx_vc7_media.vcproj | 437 --- build/msw/wx_vc7_net.vcproj | 503 --- build/msw/wx_vc7_propgrid.vcproj | 478 --- build/msw/wx_vc7_qa.vcproj | 435 --- build/msw/wx_vc7_ribbon.vcproj | 490 --- build/msw/wx_vc7_richtext.vcproj | 529 --- build/msw/wx_vc7_stc.vcproj | 439 --- build/msw/wx_vc7_webview.vcproj | 455 --- build/msw/wx_vc7_wxexpat.vcproj | 261 -- build/msw/wx_vc7_wxjpeg.vcproj | 390 -- build/msw/wx_vc7_wxpng.vcproj | 312 -- build/msw/wx_vc7_wxregex.vcproj | 358 -- build/msw/wx_vc7_wxscintilla.vcproj | 772 ---- build/msw/wx_vc7_wxtiff.vcproj | 375 -- build/msw/wx_vc7_wxzlib.vcproj | 297 -- build/msw/wx_vc7_xml.vcproj | 439 --- build/msw/wx_vc7_xrc.vcproj | 835 ----- demos/bombs/bombs_vc7.vcproj | 309 -- demos/forty/forty_vc7.vcproj | 324 -- demos/fractal/fractal_vc7.vcproj | 303 -- demos/life/life_vc7.vcproj | 312 -- demos/poem/poem_vc7.vcproj | 303 -- samples/access/access_vc7.vcproj | 303 -- samples/animate/anitest_vc7.vcproj | 311 -- samples/archive/archive_vc7.vcproj | 295 -- samples/artprov/artprov_vc7.vcproj | 314 -- samples/aui/auidemo_vc7.vcproj | 303 -- samples/calendar/calendar_vc7.vcproj | 303 -- samples/caret/caret_vc7.vcproj | 303 -- samples/clipboard/clipboard_vc7.vcproj | 303 -- samples/collpane/collpane_vc7.vcproj | 303 -- samples/combo/combo_vc7.vcproj | 303 -- samples/config/config_vc7.vcproj | 303 -- samples/console/console_vc7.vcproj | 295 -- samples/dataview/dataview_vc7.vcproj | 314 -- samples/debugrpt/debugrpt_vc7.vcproj | 303 -- samples/dialogs/dialogs_vc7.vcproj | 347 -- samples/dialup/dialup_vc7.vcproj | 303 -- samples/display/display_vc7.vcproj | 303 -- samples/dll/dll_vc7_my_dll.vcproj | 295 -- samples/dll/dll_vc7_sdk_exe.vcproj | 291 -- samples/dll/dll_vc7_wx_exe.vcproj | 174 - samples/dnd/dnd_vc7.vcproj | 303 -- samples/docview/docview_vc7.vcproj | 323 -- samples/dragimag/dragimag_vc7.vcproj | 311 -- samples/drawing/drawing_vc7.vcproj | 303 -- samples/erase/erase_vc7.vcproj | 303 -- samples/event/event_vc7.vcproj | 320 -- samples/except/except_vc7.vcproj | 303 -- samples/exec/exec_vc7.vcproj | 303 -- samples/font/font_vc7.vcproj | 303 -- samples/fswatcher/fswatcher_vc7.vcproj | 303 -- samples/grid/grid_vc7.vcproj | 311 -- samples/help/help_vc7.vcproj | 311 -- samples/htlbox/htlbox_vc7.vcproj | 303 -- samples/html/about/about_vc7.vcproj | 303 -- samples/html/help/help_vc7.vcproj | 303 -- samples/html/helpview/helpview_vc7.vcproj | 303 -- samples/html/printing/printing_vc7.vcproj | 303 -- samples/html/test/test_vc7.vcproj | 303 -- samples/html/virtual/virtual_vc7.vcproj | 303 -- samples/html/widget/widget_vc7.vcproj | 303 -- samples/html/zip/zip_vc7.vcproj | 303 -- samples/image/image_vc7.vcproj | 314 -- samples/internat/internat_vc7.vcproj | 303 -- samples/ipc/ipc_vc7_baseipcclient.vcproj | 306 -- samples/ipc/ipc_vc7_baseipcserver.vcproj | 306 -- samples/ipc/ipc_vc7_ipcclient.vcproj | 317 -- samples/ipc/ipc_vc7_ipcserver.vcproj | 317 -- samples/joytest/joytest_vc7.vcproj | 311 -- samples/keyboard/keyboard_vc7.vcproj | 303 -- samples/layout/layout_vc7.vcproj | 311 -- samples/listctrl/listctrl_vc7.vcproj | 311 -- samples/mdi/mdi_vc7.vcproj | 311 -- samples/mediaplayer/mediaplayer_vc7.vcproj | 303 -- samples/memcheck/memcheck_vc7.vcproj | 303 -- samples/menu/menu_vc7.vcproj | 303 -- samples/mfc/mfc_vc7.vcproj | 317 -- samples/minimal/minimal_vc7.vcproj | 303 -- samples/nativdlg/nativdlg_vc7.vcproj | 314 -- samples/notebook/notebook_vc7.vcproj | 311 -- samples/oleauto/oleauto_vc7.vcproj | 303 -- samples/opengl/cube/cube_vc7.vcproj | 311 -- samples/opengl/isosurf/isosurf_vc7.vcproj | 311 -- samples/opengl/penguin/penguin_vc7.vcproj | 323 -- samples/opengl/pyramid/pyramid_vc7.vcproj | 329 -- samples/ownerdrw/ownerdrw_vc7.vcproj | 303 -- samples/popup/popup_vc7.vcproj | 303 -- samples/power/power_vc7.vcproj | 303 -- samples/preferences/preferences_vc7.vcproj | 303 -- samples/printing/printing_vc7.vcproj | 311 -- samples/propgrid/propgrid_vc7.vcproj | 323 -- samples/regtest/regtest_vc7.vcproj | 303 -- samples/render/render_vc7_renddll.vcproj | 164 - samples/render/render_vc7_render.vcproj | 303 -- samples/ribbon/ribbon_vc7.vcproj | 303 -- samples/richtext/richtext_vc7.vcproj | 303 -- samples/sashtest/sashtest_vc7.vcproj | 311 -- samples/scroll/scroll_vc7.vcproj | 303 -- samples/secretstore/secretstore_vc7.vcproj | 295 -- samples/shaped/shaped_vc7.vcproj | 303 -- samples/sockets/sockets_vc7_baseclient.vcproj | 295 -- samples/sockets/sockets_vc7_baseserver.vcproj | 295 -- samples/sockets/sockets_vc7_client.vcproj | 303 -- samples/sockets/sockets_vc7_server.vcproj | 303 -- samples/sound/sound_vc7.vcproj | 303 -- samples/splash/splash_vc7.vcproj | 303 -- samples/splitter/splitter_vc7.vcproj | 303 -- samples/statbar/statbar_vc7.vcproj | 303 -- samples/stc/stctest_vc7.vcproj | 323 -- samples/svg/svgtest_vc7.vcproj | 303 -- samples/taborder/taborder_vc7.vcproj | 303 -- samples/taskbar/taskbar_vc7.vcproj | 311 -- .../taskbarbutton/taskbarbutton_vc7.vcproj | 303 -- samples/text/text_vc7.vcproj | 303 -- samples/thread/thread_vc7.vcproj | 303 -- samples/toolbar/toolbar_vc7.vcproj | 303 -- samples/treectrl/treectrl_vc7.vcproj | 311 -- samples/treelist/treelist_vc7.vcproj | 303 -- samples/typetest/typetest_vc7.vcproj | 311 -- samples/uiaction/uiaction_vc7.vcproj | 303 -- samples/validate/validate_vc7.vcproj | 311 -- samples/vscroll/vscroll_vc7.vcproj | 303 -- samples/webrequest/webrequest_vc7.vcproj | 303 -- samples/webview/webview_vc7.vcproj | 303 -- samples/widgets/widgets_vc7.vcproj | 407 --- samples/wizard/wizard_vc7.vcproj | 303 -- samples/wrapsizer/wrapsizer_vc7.vcproj | 303 -- samples/xrc/xrcdemo_vc7.vcproj | 335 -- samples/xti/xti_vc7.vcproj | 309 -- tests/benchmarks/bench_vc7.sln | 45 - tests/benchmarks/bench_vc7_bench.vcproj | 322 -- .../bench_vc7_bench_graphics.vcproj | 303 -- tests/benchmarks/bench_vc7_bench_gui.vcproj | 309 -- tests/test_vc7_test.vcproj | 592 --- tests/test_vc7_test_allheaders.vcproj | 351 -- tests/test_vc7_test_drawing.vcproj | 346 -- tests/test_vc7_test_drawingplugin.vcproj | 164 - tests/test_vc7_test_gui.vcproj | 645 ---- utils/emulator/src/emulator_vc7.vcproj | 303 -- utils/execmon/execmon_vc7.sln | 25 - utils/execmon/execmon_vc7.vcproj | 295 -- utils/helpview/src/helpview_vc7.vcproj | 303 -- utils/hhp2cached/hhp2cached_vc7.vcproj | 303 -- utils/ifacecheck/src/ifacecheck_vc7.sln | 25 - utils/ifacecheck/src/ifacecheck_vc7.vcproj | 306 -- utils/screenshotgen/src/screenshotgen_vc7.sln | 25 - .../src/screenshotgen_vc7.vcproj | 335 -- utils/wxrc/wxrc_vc7.vcproj | 295 -- 157 files changed, 1 insertion(+), 54312 deletions(-) delete mode 100644 build/msw/wx_vc7.sln delete mode 100644 build/msw/wx_vc7_adv.vcproj delete mode 100644 build/msw/wx_vc7_aui.vcproj delete mode 100644 build/msw/wx_vc7_base.vcproj delete mode 100644 build/msw/wx_vc7_core.vcproj delete mode 100644 build/msw/wx_vc7_gl.vcproj delete mode 100644 build/msw/wx_vc7_html.vcproj delete mode 100644 build/msw/wx_vc7_media.vcproj delete mode 100644 build/msw/wx_vc7_net.vcproj delete mode 100644 build/msw/wx_vc7_propgrid.vcproj delete mode 100644 build/msw/wx_vc7_qa.vcproj delete mode 100644 build/msw/wx_vc7_ribbon.vcproj delete mode 100644 build/msw/wx_vc7_richtext.vcproj delete mode 100644 build/msw/wx_vc7_stc.vcproj delete mode 100644 build/msw/wx_vc7_webview.vcproj delete mode 100644 build/msw/wx_vc7_wxexpat.vcproj delete mode 100644 build/msw/wx_vc7_wxjpeg.vcproj delete mode 100644 build/msw/wx_vc7_wxpng.vcproj delete mode 100644 build/msw/wx_vc7_wxregex.vcproj delete mode 100644 build/msw/wx_vc7_wxscintilla.vcproj delete mode 100644 build/msw/wx_vc7_wxtiff.vcproj delete mode 100644 build/msw/wx_vc7_wxzlib.vcproj delete mode 100644 build/msw/wx_vc7_xml.vcproj delete mode 100644 build/msw/wx_vc7_xrc.vcproj delete mode 100644 demos/bombs/bombs_vc7.vcproj delete mode 100644 demos/forty/forty_vc7.vcproj delete mode 100644 demos/fractal/fractal_vc7.vcproj delete mode 100644 demos/life/life_vc7.vcproj delete mode 100644 demos/poem/poem_vc7.vcproj delete mode 100644 samples/access/access_vc7.vcproj delete mode 100644 samples/animate/anitest_vc7.vcproj delete mode 100644 samples/archive/archive_vc7.vcproj delete mode 100644 samples/artprov/artprov_vc7.vcproj delete mode 100644 samples/aui/auidemo_vc7.vcproj delete mode 100644 samples/calendar/calendar_vc7.vcproj delete mode 100644 samples/caret/caret_vc7.vcproj delete mode 100644 samples/clipboard/clipboard_vc7.vcproj delete mode 100644 samples/collpane/collpane_vc7.vcproj delete mode 100644 samples/combo/combo_vc7.vcproj delete mode 100644 samples/config/config_vc7.vcproj delete mode 100644 samples/console/console_vc7.vcproj delete mode 100644 samples/dataview/dataview_vc7.vcproj delete mode 100644 samples/debugrpt/debugrpt_vc7.vcproj delete mode 100644 samples/dialogs/dialogs_vc7.vcproj delete mode 100644 samples/dialup/dialup_vc7.vcproj delete mode 100644 samples/display/display_vc7.vcproj delete mode 100644 samples/dll/dll_vc7_my_dll.vcproj delete mode 100644 samples/dll/dll_vc7_sdk_exe.vcproj delete mode 100644 samples/dll/dll_vc7_wx_exe.vcproj delete mode 100644 samples/dnd/dnd_vc7.vcproj delete mode 100644 samples/docview/docview_vc7.vcproj delete mode 100644 samples/dragimag/dragimag_vc7.vcproj delete mode 100644 samples/drawing/drawing_vc7.vcproj delete mode 100644 samples/erase/erase_vc7.vcproj delete mode 100644 samples/event/event_vc7.vcproj delete mode 100644 samples/except/except_vc7.vcproj delete mode 100644 samples/exec/exec_vc7.vcproj delete mode 100644 samples/font/font_vc7.vcproj delete mode 100644 samples/fswatcher/fswatcher_vc7.vcproj delete mode 100644 samples/grid/grid_vc7.vcproj delete mode 100644 samples/help/help_vc7.vcproj delete mode 100644 samples/htlbox/htlbox_vc7.vcproj delete mode 100644 samples/html/about/about_vc7.vcproj delete mode 100644 samples/html/help/help_vc7.vcproj delete mode 100644 samples/html/helpview/helpview_vc7.vcproj delete mode 100644 samples/html/printing/printing_vc7.vcproj delete mode 100644 samples/html/test/test_vc7.vcproj delete mode 100644 samples/html/virtual/virtual_vc7.vcproj delete mode 100644 samples/html/widget/widget_vc7.vcproj delete mode 100644 samples/html/zip/zip_vc7.vcproj delete mode 100644 samples/image/image_vc7.vcproj delete mode 100644 samples/internat/internat_vc7.vcproj delete mode 100644 samples/ipc/ipc_vc7_baseipcclient.vcproj delete mode 100644 samples/ipc/ipc_vc7_baseipcserver.vcproj delete mode 100644 samples/ipc/ipc_vc7_ipcclient.vcproj delete mode 100644 samples/ipc/ipc_vc7_ipcserver.vcproj delete mode 100644 samples/joytest/joytest_vc7.vcproj delete mode 100644 samples/keyboard/keyboard_vc7.vcproj delete mode 100644 samples/layout/layout_vc7.vcproj delete mode 100644 samples/listctrl/listctrl_vc7.vcproj delete mode 100644 samples/mdi/mdi_vc7.vcproj delete mode 100644 samples/mediaplayer/mediaplayer_vc7.vcproj delete mode 100644 samples/memcheck/memcheck_vc7.vcproj delete mode 100644 samples/menu/menu_vc7.vcproj delete mode 100644 samples/mfc/mfc_vc7.vcproj delete mode 100644 samples/minimal/minimal_vc7.vcproj delete mode 100644 samples/nativdlg/nativdlg_vc7.vcproj delete mode 100644 samples/notebook/notebook_vc7.vcproj delete mode 100644 samples/oleauto/oleauto_vc7.vcproj delete mode 100644 samples/opengl/cube/cube_vc7.vcproj delete mode 100644 samples/opengl/isosurf/isosurf_vc7.vcproj delete mode 100644 samples/opengl/penguin/penguin_vc7.vcproj delete mode 100644 samples/opengl/pyramid/pyramid_vc7.vcproj delete mode 100644 samples/ownerdrw/ownerdrw_vc7.vcproj delete mode 100644 samples/popup/popup_vc7.vcproj delete mode 100644 samples/power/power_vc7.vcproj delete mode 100644 samples/preferences/preferences_vc7.vcproj delete mode 100644 samples/printing/printing_vc7.vcproj delete mode 100644 samples/propgrid/propgrid_vc7.vcproj delete mode 100644 samples/regtest/regtest_vc7.vcproj delete mode 100644 samples/render/render_vc7_renddll.vcproj delete mode 100644 samples/render/render_vc7_render.vcproj delete mode 100644 samples/ribbon/ribbon_vc7.vcproj delete mode 100644 samples/richtext/richtext_vc7.vcproj delete mode 100644 samples/sashtest/sashtest_vc7.vcproj delete mode 100644 samples/scroll/scroll_vc7.vcproj delete mode 100644 samples/secretstore/secretstore_vc7.vcproj delete mode 100644 samples/shaped/shaped_vc7.vcproj delete mode 100644 samples/sockets/sockets_vc7_baseclient.vcproj delete mode 100644 samples/sockets/sockets_vc7_baseserver.vcproj delete mode 100644 samples/sockets/sockets_vc7_client.vcproj delete mode 100644 samples/sockets/sockets_vc7_server.vcproj delete mode 100644 samples/sound/sound_vc7.vcproj delete mode 100644 samples/splash/splash_vc7.vcproj delete mode 100644 samples/splitter/splitter_vc7.vcproj delete mode 100644 samples/statbar/statbar_vc7.vcproj delete mode 100644 samples/stc/stctest_vc7.vcproj delete mode 100644 samples/svg/svgtest_vc7.vcproj delete mode 100644 samples/taborder/taborder_vc7.vcproj delete mode 100644 samples/taskbar/taskbar_vc7.vcproj delete mode 100644 samples/taskbarbutton/taskbarbutton_vc7.vcproj delete mode 100644 samples/text/text_vc7.vcproj delete mode 100644 samples/thread/thread_vc7.vcproj delete mode 100644 samples/toolbar/toolbar_vc7.vcproj delete mode 100644 samples/treectrl/treectrl_vc7.vcproj delete mode 100644 samples/treelist/treelist_vc7.vcproj delete mode 100644 samples/typetest/typetest_vc7.vcproj delete mode 100644 samples/uiaction/uiaction_vc7.vcproj delete mode 100644 samples/validate/validate_vc7.vcproj delete mode 100644 samples/vscroll/vscroll_vc7.vcproj delete mode 100644 samples/webrequest/webrequest_vc7.vcproj delete mode 100644 samples/webview/webview_vc7.vcproj delete mode 100644 samples/widgets/widgets_vc7.vcproj delete mode 100644 samples/wizard/wizard_vc7.vcproj delete mode 100644 samples/wrapsizer/wrapsizer_vc7.vcproj delete mode 100644 samples/xrc/xrcdemo_vc7.vcproj delete mode 100644 samples/xti/xti_vc7.vcproj delete mode 100644 tests/benchmarks/bench_vc7.sln delete mode 100644 tests/benchmarks/bench_vc7_bench.vcproj delete mode 100644 tests/benchmarks/bench_vc7_bench_graphics.vcproj delete mode 100644 tests/benchmarks/bench_vc7_bench_gui.vcproj delete mode 100644 tests/test_vc7_test.vcproj delete mode 100644 tests/test_vc7_test_allheaders.vcproj delete mode 100644 tests/test_vc7_test_drawing.vcproj delete mode 100644 tests/test_vc7_test_drawingplugin.vcproj delete mode 100644 tests/test_vc7_test_gui.vcproj delete mode 100644 utils/emulator/src/emulator_vc7.vcproj delete mode 100644 utils/execmon/execmon_vc7.sln delete mode 100644 utils/execmon/execmon_vc7.vcproj delete mode 100644 utils/helpview/src/helpview_vc7.vcproj delete mode 100644 utils/hhp2cached/hhp2cached_vc7.vcproj delete mode 100644 utils/ifacecheck/src/ifacecheck_vc7.sln delete mode 100644 utils/ifacecheck/src/ifacecheck_vc7.vcproj delete mode 100644 utils/screenshotgen/src/screenshotgen_vc7.sln delete mode 100644 utils/screenshotgen/src/screenshotgen_vc7.vcproj delete mode 100644 utils/wxrc/wxrc_vc7.vcproj diff --git a/build/bakefiles/Bakefiles.bkgen b/build/bakefiles/Bakefiles.bkgen index de4ba70b07..c2b8130877 100644 --- a/build/bakefiles/Bakefiles.bkgen +++ b/build/bakefiles/Bakefiles.bkgen @@ -6,7 +6,7 @@ The formats below are disabled because wxWidgets doesn't support these compilers any longer (although bakefile still does). --> - borland,dmars,dmars_smake,msvc6prj,watcom + borland,dmars,dmars_smake,msvc6prj,msvs2003prj,watcom diff --git a/build/msw/wx_vc7.sln b/build/msw/wx_vc7.sln deleted file mode 100644 index d1554b6b3c..0000000000 --- a/build/msw/wx_vc7.sln +++ /dev/null @@ -1,248 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxregex", "wx_vc7_wxregex.vcproj", "{7A1A5354-6DB4-53F1-B75C-FE909D796167}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxzlib", "wx_vc7_wxzlib.vcproj", "{DDD86D36-A4F6-5A54-AE2C-144B3594E1CE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxpng", "wx_vc7_wxpng.vcproj", "{EE6AD15D-E891-5E03-AB6C-6F98ACE69A3C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxjpeg", "wx_vc7_wxjpeg.vcproj", "{3CA6563C-F480-52D4-AF05-D641E25A5DF2}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxtiff", "wx_vc7_wxtiff.vcproj", "{456F9EAD-4A96-59BD-A39A-75DAA25D517B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxexpat", "wx_vc7_wxexpat.vcproj", "{AF27ABC5-1AB2-55D0-8E7D-239C0176530E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wxscintilla", "wx_vc7_wxscintilla.vcproj", "{A00328D4-6B01-5DF5-828E-AC2CB8B83CF6}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base", "wx_vc7_base.vcproj", "{79F1691B-08C4-55BB-985E-FDDB0BC8753C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "net", "wx_vc7_net.vcproj", "{48EEE04D-6B25-5A11-8A4A-B84C3C1146EC}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "core", "wx_vc7_core.vcproj", "{552E2EB7-F6EA-548D-A6CC-FCB0B246EE7F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "adv", "wx_vc7_adv.vcproj", "{35F2F245-4EF0-5FFB-AD23-E1D7DAC39F0E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "media", "wx_vc7_media.vcproj", "{CD68AE51-BA90-5367-BB7D-F013E8E42AAF}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "html", "wx_vc7_html.vcproj", "{C4CBFDA4-B78E-5C7D-A5EC-B20CF69DB256}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "webview", "wx_vc7_webview.vcproj", "{BF21B19C-6122-566D-8795-8820E033BFA2}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qa", "wx_vc7_qa.vcproj", "{5ADF90A8-DA5C-55B3-88F1-94C0A0E9C76D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xml", "wx_vc7_xml.vcproj", "{B036100A-CEA0-5466-BE27-7E5B3687CAB8}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrc", "wx_vc7_xrc.vcproj", "{40DB525F-1EFF-56A4-8301-3AAD661135F3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "aui", "wx_vc7_aui.vcproj", "{0937D36F-9EAC-5D3D-B990-44B3F99BFC34}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ribbon", "wx_vc7_ribbon.vcproj", "{7973B6EB-688A-5E14-8175-A32A51A3DFC8}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "propgrid", "wx_vc7_propgrid.vcproj", "{F7A944F0-250D-57CD-8F71-BC38B2513B28}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "richtext", "wx_vc7_richtext.vcproj", "{52F16F53-E13D-55CA-AD64-ACB0274B0704}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "stc", "wx_vc7_stc.vcproj", "{4B498696-42F2-5547-B159-87E4CAF436C1}" - ProjectSection(ProjectDependencies) = postProject - {A00328D4-6B01-5DF5-828E-AC2CB8B83CF6} = {A00328D4-6B01-5DF5-828E-AC2CB8B83CF6} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gl", "wx_vc7_gl.vcproj", "{407F0D6F-2B2D-5774-B9D3-FA972A663072}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - DLL Debug|Win32 = DLL Debug|Win32 - DLL Release|Win32 = DLL Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7A1A5354-6DB4-53F1-B75C-FE909D796167}.Debug|Win32.ActiveCfg = Debug|Win32 - {7A1A5354-6DB4-53F1-B75C-FE909D796167}.Debug|Win32.Build.0 = Debug|Win32 - {7A1A5354-6DB4-53F1-B75C-FE909D796167}.Release|Win32.ActiveCfg = Release|Win32 - {7A1A5354-6DB4-53F1-B75C-FE909D796167}.Release|Win32.Build.0 = Release|Win32 - {7A1A5354-6DB4-53F1-B75C-FE909D796167}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {7A1A5354-6DB4-53F1-B75C-FE909D796167}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {7A1A5354-6DB4-53F1-B75C-FE909D796167}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {7A1A5354-6DB4-53F1-B75C-FE909D796167}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {DDD86D36-A4F6-5A54-AE2C-144B3594E1CE}.Debug|Win32.ActiveCfg = Debug|Win32 - {DDD86D36-A4F6-5A54-AE2C-144B3594E1CE}.Debug|Win32.Build.0 = Debug|Win32 - {DDD86D36-A4F6-5A54-AE2C-144B3594E1CE}.Release|Win32.ActiveCfg = Release|Win32 - {DDD86D36-A4F6-5A54-AE2C-144B3594E1CE}.Release|Win32.Build.0 = Release|Win32 - {DDD86D36-A4F6-5A54-AE2C-144B3594E1CE}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {DDD86D36-A4F6-5A54-AE2C-144B3594E1CE}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {DDD86D36-A4F6-5A54-AE2C-144B3594E1CE}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {DDD86D36-A4F6-5A54-AE2C-144B3594E1CE}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {EE6AD15D-E891-5E03-AB6C-6F98ACE69A3C}.Debug|Win32.ActiveCfg = Debug|Win32 - {EE6AD15D-E891-5E03-AB6C-6F98ACE69A3C}.Debug|Win32.Build.0 = Debug|Win32 - {EE6AD15D-E891-5E03-AB6C-6F98ACE69A3C}.Release|Win32.ActiveCfg = Release|Win32 - {EE6AD15D-E891-5E03-AB6C-6F98ACE69A3C}.Release|Win32.Build.0 = Release|Win32 - {EE6AD15D-E891-5E03-AB6C-6F98ACE69A3C}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {EE6AD15D-E891-5E03-AB6C-6F98ACE69A3C}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {EE6AD15D-E891-5E03-AB6C-6F98ACE69A3C}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {EE6AD15D-E891-5E03-AB6C-6F98ACE69A3C}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {3CA6563C-F480-52D4-AF05-D641E25A5DF2}.Debug|Win32.ActiveCfg = Debug|Win32 - {3CA6563C-F480-52D4-AF05-D641E25A5DF2}.Debug|Win32.Build.0 = Debug|Win32 - {3CA6563C-F480-52D4-AF05-D641E25A5DF2}.Release|Win32.ActiveCfg = Release|Win32 - {3CA6563C-F480-52D4-AF05-D641E25A5DF2}.Release|Win32.Build.0 = Release|Win32 - {3CA6563C-F480-52D4-AF05-D641E25A5DF2}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {3CA6563C-F480-52D4-AF05-D641E25A5DF2}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {3CA6563C-F480-52D4-AF05-D641E25A5DF2}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {3CA6563C-F480-52D4-AF05-D641E25A5DF2}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {456F9EAD-4A96-59BD-A39A-75DAA25D517B}.Debug|Win32.ActiveCfg = Debug|Win32 - {456F9EAD-4A96-59BD-A39A-75DAA25D517B}.Debug|Win32.Build.0 = Debug|Win32 - {456F9EAD-4A96-59BD-A39A-75DAA25D517B}.Release|Win32.ActiveCfg = Release|Win32 - {456F9EAD-4A96-59BD-A39A-75DAA25D517B}.Release|Win32.Build.0 = Release|Win32 - {456F9EAD-4A96-59BD-A39A-75DAA25D517B}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {456F9EAD-4A96-59BD-A39A-75DAA25D517B}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {456F9EAD-4A96-59BD-A39A-75DAA25D517B}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {456F9EAD-4A96-59BD-A39A-75DAA25D517B}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {AF27ABC5-1AB2-55D0-8E7D-239C0176530E}.Debug|Win32.ActiveCfg = Debug|Win32 - {AF27ABC5-1AB2-55D0-8E7D-239C0176530E}.Debug|Win32.Build.0 = Debug|Win32 - {AF27ABC5-1AB2-55D0-8E7D-239C0176530E}.Release|Win32.ActiveCfg = Release|Win32 - {AF27ABC5-1AB2-55D0-8E7D-239C0176530E}.Release|Win32.Build.0 = Release|Win32 - {AF27ABC5-1AB2-55D0-8E7D-239C0176530E}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {AF27ABC5-1AB2-55D0-8E7D-239C0176530E}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {AF27ABC5-1AB2-55D0-8E7D-239C0176530E}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {AF27ABC5-1AB2-55D0-8E7D-239C0176530E}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {A00328D4-6B01-5DF5-828E-AC2CB8B83CF6}.Debug|Win32.ActiveCfg = Debug|Win32 - {A00328D4-6B01-5DF5-828E-AC2CB8B83CF6}.Debug|Win32.Build.0 = Debug|Win32 - {A00328D4-6B01-5DF5-828E-AC2CB8B83CF6}.Release|Win32.ActiveCfg = Release|Win32 - {A00328D4-6B01-5DF5-828E-AC2CB8B83CF6}.Release|Win32.Build.0 = Release|Win32 - {A00328D4-6B01-5DF5-828E-AC2CB8B83CF6}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {A00328D4-6B01-5DF5-828E-AC2CB8B83CF6}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {A00328D4-6B01-5DF5-828E-AC2CB8B83CF6}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {A00328D4-6B01-5DF5-828E-AC2CB8B83CF6}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {79F1691B-08C4-55BB-985E-FDDB0BC8753C}.Debug|Win32.ActiveCfg = Debug|Win32 - {79F1691B-08C4-55BB-985E-FDDB0BC8753C}.Debug|Win32.Build.0 = Debug|Win32 - {79F1691B-08C4-55BB-985E-FDDB0BC8753C}.Release|Win32.ActiveCfg = Release|Win32 - {79F1691B-08C4-55BB-985E-FDDB0BC8753C}.Release|Win32.Build.0 = Release|Win32 - {79F1691B-08C4-55BB-985E-FDDB0BC8753C}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {79F1691B-08C4-55BB-985E-FDDB0BC8753C}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {79F1691B-08C4-55BB-985E-FDDB0BC8753C}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {79F1691B-08C4-55BB-985E-FDDB0BC8753C}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {48EEE04D-6B25-5A11-8A4A-B84C3C1146EC}.Debug|Win32.ActiveCfg = Debug|Win32 - {48EEE04D-6B25-5A11-8A4A-B84C3C1146EC}.Debug|Win32.Build.0 = Debug|Win32 - {48EEE04D-6B25-5A11-8A4A-B84C3C1146EC}.Release|Win32.ActiveCfg = Release|Win32 - {48EEE04D-6B25-5A11-8A4A-B84C3C1146EC}.Release|Win32.Build.0 = Release|Win32 - {48EEE04D-6B25-5A11-8A4A-B84C3C1146EC}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {48EEE04D-6B25-5A11-8A4A-B84C3C1146EC}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {48EEE04D-6B25-5A11-8A4A-B84C3C1146EC}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {48EEE04D-6B25-5A11-8A4A-B84C3C1146EC}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {552E2EB7-F6EA-548D-A6CC-FCB0B246EE7F}.Debug|Win32.ActiveCfg = Debug|Win32 - {552E2EB7-F6EA-548D-A6CC-FCB0B246EE7F}.Debug|Win32.Build.0 = Debug|Win32 - {552E2EB7-F6EA-548D-A6CC-FCB0B246EE7F}.Release|Win32.ActiveCfg = Release|Win32 - {552E2EB7-F6EA-548D-A6CC-FCB0B246EE7F}.Release|Win32.Build.0 = Release|Win32 - {552E2EB7-F6EA-548D-A6CC-FCB0B246EE7F}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {552E2EB7-F6EA-548D-A6CC-FCB0B246EE7F}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {552E2EB7-F6EA-548D-A6CC-FCB0B246EE7F}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {552E2EB7-F6EA-548D-A6CC-FCB0B246EE7F}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {35F2F245-4EF0-5FFB-AD23-E1D7DAC39F0E}.Debug|Win32.ActiveCfg = Debug|Win32 - {35F2F245-4EF0-5FFB-AD23-E1D7DAC39F0E}.Debug|Win32.Build.0 = Debug|Win32 - {35F2F245-4EF0-5FFB-AD23-E1D7DAC39F0E}.Release|Win32.ActiveCfg = Release|Win32 - {35F2F245-4EF0-5FFB-AD23-E1D7DAC39F0E}.Release|Win32.Build.0 = Release|Win32 - {35F2F245-4EF0-5FFB-AD23-E1D7DAC39F0E}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {35F2F245-4EF0-5FFB-AD23-E1D7DAC39F0E}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {35F2F245-4EF0-5FFB-AD23-E1D7DAC39F0E}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {35F2F245-4EF0-5FFB-AD23-E1D7DAC39F0E}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {CD68AE51-BA90-5367-BB7D-F013E8E42AAF}.Debug|Win32.ActiveCfg = Debug|Win32 - {CD68AE51-BA90-5367-BB7D-F013E8E42AAF}.Debug|Win32.Build.0 = Debug|Win32 - {CD68AE51-BA90-5367-BB7D-F013E8E42AAF}.Release|Win32.ActiveCfg = Release|Win32 - {CD68AE51-BA90-5367-BB7D-F013E8E42AAF}.Release|Win32.Build.0 = Release|Win32 - {CD68AE51-BA90-5367-BB7D-F013E8E42AAF}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {CD68AE51-BA90-5367-BB7D-F013E8E42AAF}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {CD68AE51-BA90-5367-BB7D-F013E8E42AAF}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {CD68AE51-BA90-5367-BB7D-F013E8E42AAF}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {C4CBFDA4-B78E-5C7D-A5EC-B20CF69DB256}.Debug|Win32.ActiveCfg = Debug|Win32 - {C4CBFDA4-B78E-5C7D-A5EC-B20CF69DB256}.Debug|Win32.Build.0 = Debug|Win32 - {C4CBFDA4-B78E-5C7D-A5EC-B20CF69DB256}.Release|Win32.ActiveCfg = Release|Win32 - {C4CBFDA4-B78E-5C7D-A5EC-B20CF69DB256}.Release|Win32.Build.0 = Release|Win32 - {C4CBFDA4-B78E-5C7D-A5EC-B20CF69DB256}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {C4CBFDA4-B78E-5C7D-A5EC-B20CF69DB256}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {C4CBFDA4-B78E-5C7D-A5EC-B20CF69DB256}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {C4CBFDA4-B78E-5C7D-A5EC-B20CF69DB256}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {BF21B19C-6122-566D-8795-8820E033BFA2}.Debug|Win32.ActiveCfg = Debug|Win32 - {BF21B19C-6122-566D-8795-8820E033BFA2}.Debug|Win32.Build.0 = Debug|Win32 - {BF21B19C-6122-566D-8795-8820E033BFA2}.Release|Win32.ActiveCfg = Release|Win32 - {BF21B19C-6122-566D-8795-8820E033BFA2}.Release|Win32.Build.0 = Release|Win32 - {BF21B19C-6122-566D-8795-8820E033BFA2}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {BF21B19C-6122-566D-8795-8820E033BFA2}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {BF21B19C-6122-566D-8795-8820E033BFA2}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {BF21B19C-6122-566D-8795-8820E033BFA2}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {5ADF90A8-DA5C-55B3-88F1-94C0A0E9C76D}.Debug|Win32.ActiveCfg = Debug|Win32 - {5ADF90A8-DA5C-55B3-88F1-94C0A0E9C76D}.Debug|Win32.Build.0 = Debug|Win32 - {5ADF90A8-DA5C-55B3-88F1-94C0A0E9C76D}.Release|Win32.ActiveCfg = Release|Win32 - {5ADF90A8-DA5C-55B3-88F1-94C0A0E9C76D}.Release|Win32.Build.0 = Release|Win32 - {5ADF90A8-DA5C-55B3-88F1-94C0A0E9C76D}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {5ADF90A8-DA5C-55B3-88F1-94C0A0E9C76D}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {5ADF90A8-DA5C-55B3-88F1-94C0A0E9C76D}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {5ADF90A8-DA5C-55B3-88F1-94C0A0E9C76D}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {B036100A-CEA0-5466-BE27-7E5B3687CAB8}.Debug|Win32.ActiveCfg = Debug|Win32 - {B036100A-CEA0-5466-BE27-7E5B3687CAB8}.Debug|Win32.Build.0 = Debug|Win32 - {B036100A-CEA0-5466-BE27-7E5B3687CAB8}.Release|Win32.ActiveCfg = Release|Win32 - {B036100A-CEA0-5466-BE27-7E5B3687CAB8}.Release|Win32.Build.0 = Release|Win32 - {B036100A-CEA0-5466-BE27-7E5B3687CAB8}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {B036100A-CEA0-5466-BE27-7E5B3687CAB8}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {B036100A-CEA0-5466-BE27-7E5B3687CAB8}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {B036100A-CEA0-5466-BE27-7E5B3687CAB8}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {40DB525F-1EFF-56A4-8301-3AAD661135F3}.Debug|Win32.ActiveCfg = Debug|Win32 - {40DB525F-1EFF-56A4-8301-3AAD661135F3}.Debug|Win32.Build.0 = Debug|Win32 - {40DB525F-1EFF-56A4-8301-3AAD661135F3}.Release|Win32.ActiveCfg = Release|Win32 - {40DB525F-1EFF-56A4-8301-3AAD661135F3}.Release|Win32.Build.0 = Release|Win32 - {40DB525F-1EFF-56A4-8301-3AAD661135F3}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {40DB525F-1EFF-56A4-8301-3AAD661135F3}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {40DB525F-1EFF-56A4-8301-3AAD661135F3}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {40DB525F-1EFF-56A4-8301-3AAD661135F3}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {0937D36F-9EAC-5D3D-B990-44B3F99BFC34}.Debug|Win32.ActiveCfg = Debug|Win32 - {0937D36F-9EAC-5D3D-B990-44B3F99BFC34}.Debug|Win32.Build.0 = Debug|Win32 - {0937D36F-9EAC-5D3D-B990-44B3F99BFC34}.Release|Win32.ActiveCfg = Release|Win32 - {0937D36F-9EAC-5D3D-B990-44B3F99BFC34}.Release|Win32.Build.0 = Release|Win32 - {0937D36F-9EAC-5D3D-B990-44B3F99BFC34}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {0937D36F-9EAC-5D3D-B990-44B3F99BFC34}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {0937D36F-9EAC-5D3D-B990-44B3F99BFC34}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {0937D36F-9EAC-5D3D-B990-44B3F99BFC34}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {7973B6EB-688A-5E14-8175-A32A51A3DFC8}.Debug|Win32.ActiveCfg = Debug|Win32 - {7973B6EB-688A-5E14-8175-A32A51A3DFC8}.Debug|Win32.Build.0 = Debug|Win32 - {7973B6EB-688A-5E14-8175-A32A51A3DFC8}.Release|Win32.ActiveCfg = Release|Win32 - {7973B6EB-688A-5E14-8175-A32A51A3DFC8}.Release|Win32.Build.0 = Release|Win32 - {7973B6EB-688A-5E14-8175-A32A51A3DFC8}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {7973B6EB-688A-5E14-8175-A32A51A3DFC8}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {7973B6EB-688A-5E14-8175-A32A51A3DFC8}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {7973B6EB-688A-5E14-8175-A32A51A3DFC8}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {F7A944F0-250D-57CD-8F71-BC38B2513B28}.Debug|Win32.ActiveCfg = Debug|Win32 - {F7A944F0-250D-57CD-8F71-BC38B2513B28}.Debug|Win32.Build.0 = Debug|Win32 - {F7A944F0-250D-57CD-8F71-BC38B2513B28}.Release|Win32.ActiveCfg = Release|Win32 - {F7A944F0-250D-57CD-8F71-BC38B2513B28}.Release|Win32.Build.0 = Release|Win32 - {F7A944F0-250D-57CD-8F71-BC38B2513B28}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {F7A944F0-250D-57CD-8F71-BC38B2513B28}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {F7A944F0-250D-57CD-8F71-BC38B2513B28}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {F7A944F0-250D-57CD-8F71-BC38B2513B28}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {52F16F53-E13D-55CA-AD64-ACB0274B0704}.Debug|Win32.ActiveCfg = Debug|Win32 - {52F16F53-E13D-55CA-AD64-ACB0274B0704}.Debug|Win32.Build.0 = Debug|Win32 - {52F16F53-E13D-55CA-AD64-ACB0274B0704}.Release|Win32.ActiveCfg = Release|Win32 - {52F16F53-E13D-55CA-AD64-ACB0274B0704}.Release|Win32.Build.0 = Release|Win32 - {52F16F53-E13D-55CA-AD64-ACB0274B0704}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {52F16F53-E13D-55CA-AD64-ACB0274B0704}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {52F16F53-E13D-55CA-AD64-ACB0274B0704}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {52F16F53-E13D-55CA-AD64-ACB0274B0704}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {4B498696-42F2-5547-B159-87E4CAF436C1}.Debug|Win32.ActiveCfg = Debug|Win32 - {4B498696-42F2-5547-B159-87E4CAF436C1}.Debug|Win32.Build.0 = Debug|Win32 - {4B498696-42F2-5547-B159-87E4CAF436C1}.Release|Win32.ActiveCfg = Release|Win32 - {4B498696-42F2-5547-B159-87E4CAF436C1}.Release|Win32.Build.0 = Release|Win32 - {4B498696-42F2-5547-B159-87E4CAF436C1}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {4B498696-42F2-5547-B159-87E4CAF436C1}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {4B498696-42F2-5547-B159-87E4CAF436C1}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {4B498696-42F2-5547-B159-87E4CAF436C1}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {407F0D6F-2B2D-5774-B9D3-FA972A663072}.Debug|Win32.ActiveCfg = Debug|Win32 - {407F0D6F-2B2D-5774-B9D3-FA972A663072}.Debug|Win32.Build.0 = Debug|Win32 - {407F0D6F-2B2D-5774-B9D3-FA972A663072}.Release|Win32.ActiveCfg = Release|Win32 - {407F0D6F-2B2D-5774-B9D3-FA972A663072}.Release|Win32.Build.0 = Release|Win32 - {407F0D6F-2B2D-5774-B9D3-FA972A663072}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {407F0D6F-2B2D-5774-B9D3-FA972A663072}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {407F0D6F-2B2D-5774-B9D3-FA972A663072}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {407F0D6F-2B2D-5774-B9D3-FA972A663072}.DLL Release|Win32.Build.0 = DLL Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal - diff --git a/build/msw/wx_vc7_adv.vcproj b/build/msw/wx_vc7_adv.vcproj deleted file mode 100644 index cb0fbd1253..0000000000 --- a/build/msw/wx_vc7_adv.vcproj +++ /dev/null @@ -1,418 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_aui.vcproj b/build/msw/wx_vc7_aui.vcproj deleted file mode 100644 index e56c01d9fa..0000000000 --- a/build/msw/wx_vc7_aui.vcproj +++ /dev/null @@ -1,496 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_base.vcproj b/build/msw/wx_vc7_base.vcproj deleted file mode 100644 index 81d6afd0cd..0000000000 --- a/build/msw/wx_vc7_base.vcproj +++ /dev/null @@ -1,1399 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_core.vcproj b/build/msw/wx_vc7_core.vcproj deleted file mode 100644 index b3d803359f..0000000000 --- a/build/msw/wx_vc7_core.vcproj +++ /dev/null @@ -1,3160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_gl.vcproj b/build/msw/wx_vc7_gl.vcproj deleted file mode 100644 index 4d1643f4f9..0000000000 --- a/build/msw/wx_vc7_gl.vcproj +++ /dev/null @@ -1,434 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_html.vcproj b/build/msw/wx_vc7_html.vcproj deleted file mode 100644 index bfa066ce13..0000000000 --- a/build/msw/wx_vc7_html.vcproj +++ /dev/null @@ -1,575 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_media.vcproj b/build/msw/wx_vc7_media.vcproj deleted file mode 100644 index eba478acd9..0000000000 --- a/build/msw/wx_vc7_media.vcproj +++ /dev/null @@ -1,437 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_net.vcproj b/build/msw/wx_vc7_net.vcproj deleted file mode 100644 index 5f0ee49450..0000000000 --- a/build/msw/wx_vc7_net.vcproj +++ /dev/null @@ -1,503 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_propgrid.vcproj b/build/msw/wx_vc7_propgrid.vcproj deleted file mode 100644 index 3a8e8a5720..0000000000 --- a/build/msw/wx_vc7_propgrid.vcproj +++ /dev/null @@ -1,478 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_qa.vcproj b/build/msw/wx_vc7_qa.vcproj deleted file mode 100644 index a9224f4209..0000000000 --- a/build/msw/wx_vc7_qa.vcproj +++ /dev/null @@ -1,435 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_ribbon.vcproj b/build/msw/wx_vc7_ribbon.vcproj deleted file mode 100644 index 6eb115a46f..0000000000 --- a/build/msw/wx_vc7_ribbon.vcproj +++ /dev/null @@ -1,490 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_richtext.vcproj b/build/msw/wx_vc7_richtext.vcproj deleted file mode 100644 index 24624536ec..0000000000 --- a/build/msw/wx_vc7_richtext.vcproj +++ /dev/null @@ -1,529 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_stc.vcproj b/build/msw/wx_vc7_stc.vcproj deleted file mode 100644 index 335aab2837..0000000000 --- a/build/msw/wx_vc7_stc.vcproj +++ /dev/null @@ -1,439 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_webview.vcproj b/build/msw/wx_vc7_webview.vcproj deleted file mode 100644 index b2e3e9cdf3..0000000000 --- a/build/msw/wx_vc7_webview.vcproj +++ /dev/null @@ -1,455 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_wxexpat.vcproj b/build/msw/wx_vc7_wxexpat.vcproj deleted file mode 100644 index 8a532c6224..0000000000 --- a/build/msw/wx_vc7_wxexpat.vcproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_wxjpeg.vcproj b/build/msw/wx_vc7_wxjpeg.vcproj deleted file mode 100644 index 07f7b8c347..0000000000 --- a/build/msw/wx_vc7_wxjpeg.vcproj +++ /dev/null @@ -1,390 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_wxpng.vcproj b/build/msw/wx_vc7_wxpng.vcproj deleted file mode 100644 index 8be916007d..0000000000 --- a/build/msw/wx_vc7_wxpng.vcproj +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_wxregex.vcproj b/build/msw/wx_vc7_wxregex.vcproj deleted file mode 100644 index b28f1747eb..0000000000 --- a/build/msw/wx_vc7_wxregex.vcproj +++ /dev/null @@ -1,358 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_wxscintilla.vcproj b/build/msw/wx_vc7_wxscintilla.vcproj deleted file mode 100644 index 63c96b380e..0000000000 --- a/build/msw/wx_vc7_wxscintilla.vcproj +++ /dev/null @@ -1,772 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_wxtiff.vcproj b/build/msw/wx_vc7_wxtiff.vcproj deleted file mode 100644 index 41bd61d112..0000000000 --- a/build/msw/wx_vc7_wxtiff.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_wxzlib.vcproj b/build/msw/wx_vc7_wxzlib.vcproj deleted file mode 100644 index 1391a4d832..0000000000 --- a/build/msw/wx_vc7_wxzlib.vcproj +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_xml.vcproj b/build/msw/wx_vc7_xml.vcproj deleted file mode 100644 index dbb842ad07..0000000000 --- a/build/msw/wx_vc7_xml.vcproj +++ /dev/null @@ -1,439 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/msw/wx_vc7_xrc.vcproj b/build/msw/wx_vc7_xrc.vcproj deleted file mode 100644 index 2cb49f6982..0000000000 --- a/build/msw/wx_vc7_xrc.vcproj +++ /dev/null @@ -1,835 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/demos/bombs/bombs_vc7.vcproj b/demos/bombs/bombs_vc7.vcproj deleted file mode 100644 index 0a414afc44..0000000000 --- a/demos/bombs/bombs_vc7.vcproj +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/demos/forty/forty_vc7.vcproj b/demos/forty/forty_vc7.vcproj deleted file mode 100644 index 13f6ef79b6..0000000000 --- a/demos/forty/forty_vc7.vcproj +++ /dev/null @@ -1,324 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/demos/fractal/fractal_vc7.vcproj b/demos/fractal/fractal_vc7.vcproj deleted file mode 100644 index f00cb27865..0000000000 --- a/demos/fractal/fractal_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/demos/life/life_vc7.vcproj b/demos/life/life_vc7.vcproj deleted file mode 100644 index 8b0431d1a9..0000000000 --- a/demos/life/life_vc7.vcproj +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/demos/poem/poem_vc7.vcproj b/demos/poem/poem_vc7.vcproj deleted file mode 100644 index 0c46d5ad38..0000000000 --- a/demos/poem/poem_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/access/access_vc7.vcproj b/samples/access/access_vc7.vcproj deleted file mode 100644 index 1e2d834319..0000000000 --- a/samples/access/access_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/animate/anitest_vc7.vcproj b/samples/animate/anitest_vc7.vcproj deleted file mode 100644 index 265f2e8a8d..0000000000 --- a/samples/animate/anitest_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/archive/archive_vc7.vcproj b/samples/archive/archive_vc7.vcproj deleted file mode 100644 index 1a177ae6ff..0000000000 --- a/samples/archive/archive_vc7.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/artprov/artprov_vc7.vcproj b/samples/artprov/artprov_vc7.vcproj deleted file mode 100644 index 40df2fc360..0000000000 --- a/samples/artprov/artprov_vc7.vcproj +++ /dev/null @@ -1,314 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/aui/auidemo_vc7.vcproj b/samples/aui/auidemo_vc7.vcproj deleted file mode 100644 index b895059d4f..0000000000 --- a/samples/aui/auidemo_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/calendar/calendar_vc7.vcproj b/samples/calendar/calendar_vc7.vcproj deleted file mode 100644 index 167e28265d..0000000000 --- a/samples/calendar/calendar_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/caret/caret_vc7.vcproj b/samples/caret/caret_vc7.vcproj deleted file mode 100644 index 33e2208143..0000000000 --- a/samples/caret/caret_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/clipboard/clipboard_vc7.vcproj b/samples/clipboard/clipboard_vc7.vcproj deleted file mode 100644 index 6bb2bca42e..0000000000 --- a/samples/clipboard/clipboard_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/collpane/collpane_vc7.vcproj b/samples/collpane/collpane_vc7.vcproj deleted file mode 100644 index 9d1a3fbc7a..0000000000 --- a/samples/collpane/collpane_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/combo/combo_vc7.vcproj b/samples/combo/combo_vc7.vcproj deleted file mode 100644 index 12ffb9f245..0000000000 --- a/samples/combo/combo_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/config/config_vc7.vcproj b/samples/config/config_vc7.vcproj deleted file mode 100644 index abbe1b6d20..0000000000 --- a/samples/config/config_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/console/console_vc7.vcproj b/samples/console/console_vc7.vcproj deleted file mode 100644 index 36e339042a..0000000000 --- a/samples/console/console_vc7.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/dataview/dataview_vc7.vcproj b/samples/dataview/dataview_vc7.vcproj deleted file mode 100644 index e0fa3e7d12..0000000000 --- a/samples/dataview/dataview_vc7.vcproj +++ /dev/null @@ -1,314 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/debugrpt/debugrpt_vc7.vcproj b/samples/debugrpt/debugrpt_vc7.vcproj deleted file mode 100644 index 648271ecb5..0000000000 --- a/samples/debugrpt/debugrpt_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/dialogs/dialogs_vc7.vcproj b/samples/dialogs/dialogs_vc7.vcproj deleted file mode 100644 index 84d5a90aa9..0000000000 --- a/samples/dialogs/dialogs_vc7.vcproj +++ /dev/null @@ -1,347 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/dialup/dialup_vc7.vcproj b/samples/dialup/dialup_vc7.vcproj deleted file mode 100644 index 535ddf726b..0000000000 --- a/samples/dialup/dialup_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/display/display_vc7.vcproj b/samples/display/display_vc7.vcproj deleted file mode 100644 index 450425b10d..0000000000 --- a/samples/display/display_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/dll/dll_vc7_my_dll.vcproj b/samples/dll/dll_vc7_my_dll.vcproj deleted file mode 100644 index 9426f87b30..0000000000 --- a/samples/dll/dll_vc7_my_dll.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/dll/dll_vc7_sdk_exe.vcproj b/samples/dll/dll_vc7_sdk_exe.vcproj deleted file mode 100644 index 68bd4dac60..0000000000 --- a/samples/dll/dll_vc7_sdk_exe.vcproj +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/dll/dll_vc7_wx_exe.vcproj b/samples/dll/dll_vc7_wx_exe.vcproj deleted file mode 100644 index ec36209eec..0000000000 --- a/samples/dll/dll_vc7_wx_exe.vcproj +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/dnd/dnd_vc7.vcproj b/samples/dnd/dnd_vc7.vcproj deleted file mode 100644 index 3302d20828..0000000000 --- a/samples/dnd/dnd_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/docview/docview_vc7.vcproj b/samples/docview/docview_vc7.vcproj deleted file mode 100644 index 0ce4770741..0000000000 --- a/samples/docview/docview_vc7.vcproj +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/dragimag/dragimag_vc7.vcproj b/samples/dragimag/dragimag_vc7.vcproj deleted file mode 100644 index ef4eed927f..0000000000 --- a/samples/dragimag/dragimag_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/drawing/drawing_vc7.vcproj b/samples/drawing/drawing_vc7.vcproj deleted file mode 100644 index 0143f77558..0000000000 --- a/samples/drawing/drawing_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/erase/erase_vc7.vcproj b/samples/erase/erase_vc7.vcproj deleted file mode 100644 index d63027598d..0000000000 --- a/samples/erase/erase_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/event/event_vc7.vcproj b/samples/event/event_vc7.vcproj deleted file mode 100644 index c600907709..0000000000 --- a/samples/event/event_vc7.vcproj +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/except/except_vc7.vcproj b/samples/except/except_vc7.vcproj deleted file mode 100644 index 347653d384..0000000000 --- a/samples/except/except_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/exec/exec_vc7.vcproj b/samples/exec/exec_vc7.vcproj deleted file mode 100644 index 650dc2f627..0000000000 --- a/samples/exec/exec_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/font/font_vc7.vcproj b/samples/font/font_vc7.vcproj deleted file mode 100644 index b87ac98d59..0000000000 --- a/samples/font/font_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/fswatcher/fswatcher_vc7.vcproj b/samples/fswatcher/fswatcher_vc7.vcproj deleted file mode 100644 index 101da0dbbc..0000000000 --- a/samples/fswatcher/fswatcher_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/grid/grid_vc7.vcproj b/samples/grid/grid_vc7.vcproj deleted file mode 100644 index 9017917b19..0000000000 --- a/samples/grid/grid_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/help/help_vc7.vcproj b/samples/help/help_vc7.vcproj deleted file mode 100644 index c97ecb6694..0000000000 --- a/samples/help/help_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/htlbox/htlbox_vc7.vcproj b/samples/htlbox/htlbox_vc7.vcproj deleted file mode 100644 index 16c4bdefc1..0000000000 --- a/samples/htlbox/htlbox_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/html/about/about_vc7.vcproj b/samples/html/about/about_vc7.vcproj deleted file mode 100644 index efe370f397..0000000000 --- a/samples/html/about/about_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/html/help/help_vc7.vcproj b/samples/html/help/help_vc7.vcproj deleted file mode 100644 index 10f12c6976..0000000000 --- a/samples/html/help/help_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/html/helpview/helpview_vc7.vcproj b/samples/html/helpview/helpview_vc7.vcproj deleted file mode 100644 index 3f50928edc..0000000000 --- a/samples/html/helpview/helpview_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/html/printing/printing_vc7.vcproj b/samples/html/printing/printing_vc7.vcproj deleted file mode 100644 index cf653a76e0..0000000000 --- a/samples/html/printing/printing_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/html/test/test_vc7.vcproj b/samples/html/test/test_vc7.vcproj deleted file mode 100644 index b40f539409..0000000000 --- a/samples/html/test/test_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/html/virtual/virtual_vc7.vcproj b/samples/html/virtual/virtual_vc7.vcproj deleted file mode 100644 index a80d6f41d0..0000000000 --- a/samples/html/virtual/virtual_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/html/widget/widget_vc7.vcproj b/samples/html/widget/widget_vc7.vcproj deleted file mode 100644 index 99353e6c40..0000000000 --- a/samples/html/widget/widget_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/html/zip/zip_vc7.vcproj b/samples/html/zip/zip_vc7.vcproj deleted file mode 100644 index 2a56bbca58..0000000000 --- a/samples/html/zip/zip_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/image/image_vc7.vcproj b/samples/image/image_vc7.vcproj deleted file mode 100644 index 5cf2186d58..0000000000 --- a/samples/image/image_vc7.vcproj +++ /dev/null @@ -1,314 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/internat/internat_vc7.vcproj b/samples/internat/internat_vc7.vcproj deleted file mode 100644 index d3a06b0a39..0000000000 --- a/samples/internat/internat_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/ipc/ipc_vc7_baseipcclient.vcproj b/samples/ipc/ipc_vc7_baseipcclient.vcproj deleted file mode 100644 index 68b459d906..0000000000 --- a/samples/ipc/ipc_vc7_baseipcclient.vcproj +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/ipc/ipc_vc7_baseipcserver.vcproj b/samples/ipc/ipc_vc7_baseipcserver.vcproj deleted file mode 100644 index fa2e85a5cf..0000000000 --- a/samples/ipc/ipc_vc7_baseipcserver.vcproj +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/ipc/ipc_vc7_ipcclient.vcproj b/samples/ipc/ipc_vc7_ipcclient.vcproj deleted file mode 100644 index 7cde84dec6..0000000000 --- a/samples/ipc/ipc_vc7_ipcclient.vcproj +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/ipc/ipc_vc7_ipcserver.vcproj b/samples/ipc/ipc_vc7_ipcserver.vcproj deleted file mode 100644 index 5ec03c1562..0000000000 --- a/samples/ipc/ipc_vc7_ipcserver.vcproj +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/joytest/joytest_vc7.vcproj b/samples/joytest/joytest_vc7.vcproj deleted file mode 100644 index f2c2cb1732..0000000000 --- a/samples/joytest/joytest_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/keyboard/keyboard_vc7.vcproj b/samples/keyboard/keyboard_vc7.vcproj deleted file mode 100644 index b0ec6e1049..0000000000 --- a/samples/keyboard/keyboard_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/layout/layout_vc7.vcproj b/samples/layout/layout_vc7.vcproj deleted file mode 100644 index 5de9e761fc..0000000000 --- a/samples/layout/layout_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/listctrl/listctrl_vc7.vcproj b/samples/listctrl/listctrl_vc7.vcproj deleted file mode 100644 index 7ba87016ab..0000000000 --- a/samples/listctrl/listctrl_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/mdi/mdi_vc7.vcproj b/samples/mdi/mdi_vc7.vcproj deleted file mode 100644 index 1092f61b3c..0000000000 --- a/samples/mdi/mdi_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/mediaplayer/mediaplayer_vc7.vcproj b/samples/mediaplayer/mediaplayer_vc7.vcproj deleted file mode 100644 index 41b92f438e..0000000000 --- a/samples/mediaplayer/mediaplayer_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/memcheck/memcheck_vc7.vcproj b/samples/memcheck/memcheck_vc7.vcproj deleted file mode 100644 index df34f73cf2..0000000000 --- a/samples/memcheck/memcheck_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/menu/menu_vc7.vcproj b/samples/menu/menu_vc7.vcproj deleted file mode 100644 index f355dff37b..0000000000 --- a/samples/menu/menu_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/mfc/mfc_vc7.vcproj b/samples/mfc/mfc_vc7.vcproj deleted file mode 100644 index 6f8d476e2f..0000000000 --- a/samples/mfc/mfc_vc7.vcproj +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/minimal/minimal_vc7.vcproj b/samples/minimal/minimal_vc7.vcproj deleted file mode 100644 index 559675c75e..0000000000 --- a/samples/minimal/minimal_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/nativdlg/nativdlg_vc7.vcproj b/samples/nativdlg/nativdlg_vc7.vcproj deleted file mode 100644 index 74ca9e4165..0000000000 --- a/samples/nativdlg/nativdlg_vc7.vcproj +++ /dev/null @@ -1,314 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/notebook/notebook_vc7.vcproj b/samples/notebook/notebook_vc7.vcproj deleted file mode 100644 index 8e6cc80fa0..0000000000 --- a/samples/notebook/notebook_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/oleauto/oleauto_vc7.vcproj b/samples/oleauto/oleauto_vc7.vcproj deleted file mode 100644 index 152367f3e1..0000000000 --- a/samples/oleauto/oleauto_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/opengl/cube/cube_vc7.vcproj b/samples/opengl/cube/cube_vc7.vcproj deleted file mode 100644 index 3e184df35f..0000000000 --- a/samples/opengl/cube/cube_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/opengl/isosurf/isosurf_vc7.vcproj b/samples/opengl/isosurf/isosurf_vc7.vcproj deleted file mode 100644 index 7ff837e25f..0000000000 --- a/samples/opengl/isosurf/isosurf_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/opengl/penguin/penguin_vc7.vcproj b/samples/opengl/penguin/penguin_vc7.vcproj deleted file mode 100644 index 4a36261b1e..0000000000 --- a/samples/opengl/penguin/penguin_vc7.vcproj +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/opengl/pyramid/pyramid_vc7.vcproj b/samples/opengl/pyramid/pyramid_vc7.vcproj deleted file mode 100644 index 9ffd9c2c42..0000000000 --- a/samples/opengl/pyramid/pyramid_vc7.vcproj +++ /dev/null @@ -1,329 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/ownerdrw/ownerdrw_vc7.vcproj b/samples/ownerdrw/ownerdrw_vc7.vcproj deleted file mode 100644 index 3eca045dec..0000000000 --- a/samples/ownerdrw/ownerdrw_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/popup/popup_vc7.vcproj b/samples/popup/popup_vc7.vcproj deleted file mode 100644 index b04da7f5b0..0000000000 --- a/samples/popup/popup_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/power/power_vc7.vcproj b/samples/power/power_vc7.vcproj deleted file mode 100644 index 7a5d2bae35..0000000000 --- a/samples/power/power_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/preferences/preferences_vc7.vcproj b/samples/preferences/preferences_vc7.vcproj deleted file mode 100644 index e1b4914ffb..0000000000 --- a/samples/preferences/preferences_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/printing/printing_vc7.vcproj b/samples/printing/printing_vc7.vcproj deleted file mode 100644 index 52b3ff1015..0000000000 --- a/samples/printing/printing_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/propgrid/propgrid_vc7.vcproj b/samples/propgrid/propgrid_vc7.vcproj deleted file mode 100644 index 209d11ab1d..0000000000 --- a/samples/propgrid/propgrid_vc7.vcproj +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/regtest/regtest_vc7.vcproj b/samples/regtest/regtest_vc7.vcproj deleted file mode 100644 index f278cb8012..0000000000 --- a/samples/regtest/regtest_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/render/render_vc7_renddll.vcproj b/samples/render/render_vc7_renddll.vcproj deleted file mode 100644 index 9f140051ee..0000000000 --- a/samples/render/render_vc7_renddll.vcproj +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/render/render_vc7_render.vcproj b/samples/render/render_vc7_render.vcproj deleted file mode 100644 index 3068d17cf8..0000000000 --- a/samples/render/render_vc7_render.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/ribbon/ribbon_vc7.vcproj b/samples/ribbon/ribbon_vc7.vcproj deleted file mode 100644 index 67d23bd24a..0000000000 --- a/samples/ribbon/ribbon_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/richtext/richtext_vc7.vcproj b/samples/richtext/richtext_vc7.vcproj deleted file mode 100644 index f37a534112..0000000000 --- a/samples/richtext/richtext_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/sashtest/sashtest_vc7.vcproj b/samples/sashtest/sashtest_vc7.vcproj deleted file mode 100644 index c7a803f8fa..0000000000 --- a/samples/sashtest/sashtest_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/scroll/scroll_vc7.vcproj b/samples/scroll/scroll_vc7.vcproj deleted file mode 100644 index b992b89b59..0000000000 --- a/samples/scroll/scroll_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/secretstore/secretstore_vc7.vcproj b/samples/secretstore/secretstore_vc7.vcproj deleted file mode 100644 index 5b92f59965..0000000000 --- a/samples/secretstore/secretstore_vc7.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/shaped/shaped_vc7.vcproj b/samples/shaped/shaped_vc7.vcproj deleted file mode 100644 index 3629a9793c..0000000000 --- a/samples/shaped/shaped_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/sockets/sockets_vc7_baseclient.vcproj b/samples/sockets/sockets_vc7_baseclient.vcproj deleted file mode 100644 index aa099386bb..0000000000 --- a/samples/sockets/sockets_vc7_baseclient.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/sockets/sockets_vc7_baseserver.vcproj b/samples/sockets/sockets_vc7_baseserver.vcproj deleted file mode 100644 index 7bf9131e8f..0000000000 --- a/samples/sockets/sockets_vc7_baseserver.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/sockets/sockets_vc7_client.vcproj b/samples/sockets/sockets_vc7_client.vcproj deleted file mode 100644 index f1fdaa5e79..0000000000 --- a/samples/sockets/sockets_vc7_client.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/sockets/sockets_vc7_server.vcproj b/samples/sockets/sockets_vc7_server.vcproj deleted file mode 100644 index d2c9efe280..0000000000 --- a/samples/sockets/sockets_vc7_server.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/sound/sound_vc7.vcproj b/samples/sound/sound_vc7.vcproj deleted file mode 100644 index 15e54ab2e7..0000000000 --- a/samples/sound/sound_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/splash/splash_vc7.vcproj b/samples/splash/splash_vc7.vcproj deleted file mode 100644 index 8144dd680e..0000000000 --- a/samples/splash/splash_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/splitter/splitter_vc7.vcproj b/samples/splitter/splitter_vc7.vcproj deleted file mode 100644 index 296a0100df..0000000000 --- a/samples/splitter/splitter_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/statbar/statbar_vc7.vcproj b/samples/statbar/statbar_vc7.vcproj deleted file mode 100644 index d2fcba4aa9..0000000000 --- a/samples/statbar/statbar_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/stc/stctest_vc7.vcproj b/samples/stc/stctest_vc7.vcproj deleted file mode 100644 index 4161cdf2cd..0000000000 --- a/samples/stc/stctest_vc7.vcproj +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/svg/svgtest_vc7.vcproj b/samples/svg/svgtest_vc7.vcproj deleted file mode 100644 index 8af86f3352..0000000000 --- a/samples/svg/svgtest_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/taborder/taborder_vc7.vcproj b/samples/taborder/taborder_vc7.vcproj deleted file mode 100644 index 8394e041b5..0000000000 --- a/samples/taborder/taborder_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/taskbar/taskbar_vc7.vcproj b/samples/taskbar/taskbar_vc7.vcproj deleted file mode 100644 index a0d8414101..0000000000 --- a/samples/taskbar/taskbar_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/taskbarbutton/taskbarbutton_vc7.vcproj b/samples/taskbarbutton/taskbarbutton_vc7.vcproj deleted file mode 100644 index 14a3c659cd..0000000000 --- a/samples/taskbarbutton/taskbarbutton_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/text/text_vc7.vcproj b/samples/text/text_vc7.vcproj deleted file mode 100644 index 0bf343497c..0000000000 --- a/samples/text/text_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/thread/thread_vc7.vcproj b/samples/thread/thread_vc7.vcproj deleted file mode 100644 index 07f0b2bc63..0000000000 --- a/samples/thread/thread_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/toolbar/toolbar_vc7.vcproj b/samples/toolbar/toolbar_vc7.vcproj deleted file mode 100644 index 82a28d2b54..0000000000 --- a/samples/toolbar/toolbar_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/treectrl/treectrl_vc7.vcproj b/samples/treectrl/treectrl_vc7.vcproj deleted file mode 100644 index ccf63ce6fc..0000000000 --- a/samples/treectrl/treectrl_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/treelist/treelist_vc7.vcproj b/samples/treelist/treelist_vc7.vcproj deleted file mode 100644 index cf0e1a4feb..0000000000 --- a/samples/treelist/treelist_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/typetest/typetest_vc7.vcproj b/samples/typetest/typetest_vc7.vcproj deleted file mode 100644 index a5cd6b1c29..0000000000 --- a/samples/typetest/typetest_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/uiaction/uiaction_vc7.vcproj b/samples/uiaction/uiaction_vc7.vcproj deleted file mode 100644 index 60d3086c25..0000000000 --- a/samples/uiaction/uiaction_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/validate/validate_vc7.vcproj b/samples/validate/validate_vc7.vcproj deleted file mode 100644 index 85806d4bd7..0000000000 --- a/samples/validate/validate_vc7.vcproj +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/vscroll/vscroll_vc7.vcproj b/samples/vscroll/vscroll_vc7.vcproj deleted file mode 100644 index 88ae2d747e..0000000000 --- a/samples/vscroll/vscroll_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/webrequest/webrequest_vc7.vcproj b/samples/webrequest/webrequest_vc7.vcproj deleted file mode 100644 index 06c1a349ad..0000000000 --- a/samples/webrequest/webrequest_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/webview/webview_vc7.vcproj b/samples/webview/webview_vc7.vcproj deleted file mode 100644 index 25af66defb..0000000000 --- a/samples/webview/webview_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/widgets/widgets_vc7.vcproj b/samples/widgets/widgets_vc7.vcproj deleted file mode 100644 index 409b564214..0000000000 --- a/samples/widgets/widgets_vc7.vcproj +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/wizard/wizard_vc7.vcproj b/samples/wizard/wizard_vc7.vcproj deleted file mode 100644 index c90c42f0db..0000000000 --- a/samples/wizard/wizard_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/wrapsizer/wrapsizer_vc7.vcproj b/samples/wrapsizer/wrapsizer_vc7.vcproj deleted file mode 100644 index 3f5ff3b93f..0000000000 --- a/samples/wrapsizer/wrapsizer_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/xrc/xrcdemo_vc7.vcproj b/samples/xrc/xrcdemo_vc7.vcproj deleted file mode 100644 index b877eacecd..0000000000 --- a/samples/xrc/xrcdemo_vc7.vcproj +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/xti/xti_vc7.vcproj b/samples/xti/xti_vc7.vcproj deleted file mode 100644 index 8680a08bf8..0000000000 --- a/samples/xti/xti_vc7.vcproj +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/benchmarks/bench_vc7.sln b/tests/benchmarks/bench_vc7.sln deleted file mode 100644 index 01e7f8a42b..0000000000 --- a/tests/benchmarks/bench_vc7.sln +++ /dev/null @@ -1,45 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench", "bench_vc7_bench.vcproj", "{737049A0-9449-5B95-B173-0C906929CCD3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench_gui", "bench_vc7_bench_gui.vcproj", "{B5CBA605-D60A-5254-8137-1BBF4F5D9538}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bench_graphics", "bench_vc7_bench_graphics.vcproj", "{9831CC11-A563-52BA-82BC-05408C2D095F}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - DLL Debug|Win32 = DLL Debug|Win32 - DLL Release|Win32 = DLL Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {737049A0-9449-5B95-B173-0C906929CCD3}.Debug|Win32.ActiveCfg = Debug|Win32 - {737049A0-9449-5B95-B173-0C906929CCD3}.Debug|Win32.Build.0 = Debug|Win32 - {737049A0-9449-5B95-B173-0C906929CCD3}.Release|Win32.ActiveCfg = Release|Win32 - {737049A0-9449-5B95-B173-0C906929CCD3}.Release|Win32.Build.0 = Release|Win32 - {737049A0-9449-5B95-B173-0C906929CCD3}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {737049A0-9449-5B95-B173-0C906929CCD3}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {737049A0-9449-5B95-B173-0C906929CCD3}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {737049A0-9449-5B95-B173-0C906929CCD3}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Debug|Win32.ActiveCfg = Debug|Win32 - {B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Debug|Win32.Build.0 = Debug|Win32 - {B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Release|Win32.ActiveCfg = Release|Win32 - {B5CBA605-D60A-5254-8137-1BBF4F5D9538}.Release|Win32.Build.0 = Release|Win32 - {B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {B5CBA605-D60A-5254-8137-1BBF4F5D9538}.DLL Release|Win32.Build.0 = DLL Release|Win32 - {9831CC11-A563-52BA-82BC-05408C2D095F}.Debug|Win32.ActiveCfg = Debug|Win32 - {9831CC11-A563-52BA-82BC-05408C2D095F}.Debug|Win32.Build.0 = Debug|Win32 - {9831CC11-A563-52BA-82BC-05408C2D095F}.Release|Win32.ActiveCfg = Release|Win32 - {9831CC11-A563-52BA-82BC-05408C2D095F}.Release|Win32.Build.0 = Release|Win32 - {9831CC11-A563-52BA-82BC-05408C2D095F}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {9831CC11-A563-52BA-82BC-05408C2D095F}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {9831CC11-A563-52BA-82BC-05408C2D095F}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {9831CC11-A563-52BA-82BC-05408C2D095F}.DLL Release|Win32.Build.0 = DLL Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal - diff --git a/tests/benchmarks/bench_vc7_bench.vcproj b/tests/benchmarks/bench_vc7_bench.vcproj deleted file mode 100644 index 7afab785b5..0000000000 --- a/tests/benchmarks/bench_vc7_bench.vcproj +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/benchmarks/bench_vc7_bench_graphics.vcproj b/tests/benchmarks/bench_vc7_bench_graphics.vcproj deleted file mode 100644 index 4d56c07682..0000000000 --- a/tests/benchmarks/bench_vc7_bench_graphics.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/benchmarks/bench_vc7_bench_gui.vcproj b/tests/benchmarks/bench_vc7_bench_gui.vcproj deleted file mode 100644 index 597528bc97..0000000000 --- a/tests/benchmarks/bench_vc7_bench_gui.vcproj +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/test_vc7_test.vcproj b/tests/test_vc7_test.vcproj deleted file mode 100644 index 8ec5dec86a..0000000000 --- a/tests/test_vc7_test.vcproj +++ /dev/null @@ -1,592 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/test_vc7_test_allheaders.vcproj b/tests/test_vc7_test_allheaders.vcproj deleted file mode 100644 index 3160884b9f..0000000000 --- a/tests/test_vc7_test_allheaders.vcproj +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/test_vc7_test_drawing.vcproj b/tests/test_vc7_test_drawing.vcproj deleted file mode 100644 index 38cf2852f8..0000000000 --- a/tests/test_vc7_test_drawing.vcproj +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/test_vc7_test_drawingplugin.vcproj b/tests/test_vc7_test_drawingplugin.vcproj deleted file mode 100644 index f9ecb7adc0..0000000000 --- a/tests/test_vc7_test_drawingplugin.vcproj +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tests/test_vc7_test_gui.vcproj b/tests/test_vc7_test_gui.vcproj deleted file mode 100644 index c8fdbed3af..0000000000 --- a/tests/test_vc7_test_gui.vcproj +++ /dev/null @@ -1,645 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/utils/emulator/src/emulator_vc7.vcproj b/utils/emulator/src/emulator_vc7.vcproj deleted file mode 100644 index 4e49f0915d..0000000000 --- a/utils/emulator/src/emulator_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/utils/execmon/execmon_vc7.sln b/utils/execmon/execmon_vc7.sln deleted file mode 100644 index b2839241a7..0000000000 --- a/utils/execmon/execmon_vc7.sln +++ /dev/null @@ -1,25 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "execmon", "execmon_vc7.vcproj", "{C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - DLL Debug|Win32 = DLL Debug|Win32 - DLL Release|Win32 = DLL Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Debug|Win32.ActiveCfg = Debug|Win32 - {C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Debug|Win32.Build.0 = Debug|Win32 - {C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Release|Win32.ActiveCfg = Release|Win32 - {C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.Release|Win32.Build.0 = Release|Win32 - {C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {C52B1010-5B36-55C4-90F9-F6DCD0DF1DAB}.DLL Release|Win32.Build.0 = DLL Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal - diff --git a/utils/execmon/execmon_vc7.vcproj b/utils/execmon/execmon_vc7.vcproj deleted file mode 100644 index 44eaec311c..0000000000 --- a/utils/execmon/execmon_vc7.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/utils/helpview/src/helpview_vc7.vcproj b/utils/helpview/src/helpview_vc7.vcproj deleted file mode 100644 index 7751360f06..0000000000 --- a/utils/helpview/src/helpview_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/utils/hhp2cached/hhp2cached_vc7.vcproj b/utils/hhp2cached/hhp2cached_vc7.vcproj deleted file mode 100644 index fabd90ef1b..0000000000 --- a/utils/hhp2cached/hhp2cached_vc7.vcproj +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/utils/ifacecheck/src/ifacecheck_vc7.sln b/utils/ifacecheck/src/ifacecheck_vc7.sln deleted file mode 100644 index 11aa24b474..0000000000 --- a/utils/ifacecheck/src/ifacecheck_vc7.sln +++ /dev/null @@ -1,25 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ifacecheck", "ifacecheck_vc7.vcproj", "{355B6651-9A8E-5D72-A3E9-DAB21650C0FC}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - DLL Debug|Win32 = DLL Debug|Win32 - DLL Release|Win32 = DLL Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Debug|Win32.ActiveCfg = Debug|Win32 - {355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Debug|Win32.Build.0 = Debug|Win32 - {355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Release|Win32.ActiveCfg = Release|Win32 - {355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.Release|Win32.Build.0 = Release|Win32 - {355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {355B6651-9A8E-5D72-A3E9-DAB21650C0FC}.DLL Release|Win32.Build.0 = DLL Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal - diff --git a/utils/ifacecheck/src/ifacecheck_vc7.vcproj b/utils/ifacecheck/src/ifacecheck_vc7.vcproj deleted file mode 100644 index 1dbfc08855..0000000000 --- a/utils/ifacecheck/src/ifacecheck_vc7.vcproj +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/utils/screenshotgen/src/screenshotgen_vc7.sln b/utils/screenshotgen/src/screenshotgen_vc7.sln deleted file mode 100644 index 23192e80f1..0000000000 --- a/utils/screenshotgen/src/screenshotgen_vc7.sln +++ /dev/null @@ -1,25 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "screenshotgen", "screenshotgen_vc7.vcproj", "{65A1C4C8-E1D5-5972-8550-0F5631031FBB}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - DLL Debug|Win32 = DLL Debug|Win32 - DLL Release|Win32 = DLL Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Debug|Win32.ActiveCfg = Debug|Win32 - {65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Debug|Win32.Build.0 = Debug|Win32 - {65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Release|Win32.ActiveCfg = Release|Win32 - {65A1C4C8-E1D5-5972-8550-0F5631031FBB}.Release|Win32.Build.0 = Release|Win32 - {65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Debug|Win32.ActiveCfg = DLL Debug|Win32 - {65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Debug|Win32.Build.0 = DLL Debug|Win32 - {65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Release|Win32.ActiveCfg = DLL Release|Win32 - {65A1C4C8-E1D5-5972-8550-0F5631031FBB}.DLL Release|Win32.Build.0 = DLL Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal - diff --git a/utils/screenshotgen/src/screenshotgen_vc7.vcproj b/utils/screenshotgen/src/screenshotgen_vc7.vcproj deleted file mode 100644 index 52738e7c60..0000000000 --- a/utils/screenshotgen/src/screenshotgen_vc7.vcproj +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/utils/wxrc/wxrc_vc7.vcproj b/utils/wxrc/wxrc_vc7.vcproj deleted file mode 100644 index eb13cb6a08..0000000000 --- a/utils/wxrc/wxrc_vc7.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From 99f2d0ee2bb712e69f726ff8521bc4ead51bfebc Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 26 Apr 2021 16:26:34 +0200 Subject: [PATCH 3/3] Update the minimum required MSVS version to 2005 --- README.md | 2 +- docs/changes.txt | 3 +++ docs/doxygen/mainpages/introduction.h | 2 +- docs/doxygen/mainpages/platdetails.h | 2 +- docs/msw/install.md | 6 +++--- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f016fc21e0..1acfe9c7e6 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ This version of wxWidgets supports the following primary platforms: Most popular C++ compilers are supported including but not limited to: -- Microsoft Visual C++ 2003 or later (up to 2019). +- Microsoft Visual C++ 2005 or later (up to 2019). - g++ 4 or later, including MinGW/MinGW-64/TDM under Windows. - Clang under macOS and Linux. - Intel icc compiler. diff --git a/docs/changes.txt b/docs/changes.txt index e8ad00371c..21d6b8fc75 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -192,6 +192,9 @@ Changes in behaviour which may result in build errors - wxImage constructor from XPM data is now explicit, write "wxImage(xpmData)" instead of just "xpmData" if you really need to use it. +- Microsoft Visual Studio 2003 (a.k.a. MSVC 7) is not supported any longer, the + minimum required version is now 2005. + 3.1.6: (released 2021-06-??) ---------------------------- diff --git a/docs/doxygen/mainpages/introduction.h b/docs/doxygen/mainpages/introduction.h index 11569c041a..3c075f19a7 100644 --- a/docs/doxygen/mainpages/introduction.h +++ b/docs/doxygen/mainpages/introduction.h @@ -80,7 +80,7 @@ wxWidgets first-tier "ports", ie implementations of wxWidgets API, are: @li wxMSW: This is the native port for Microsoft Windows systems (from Windows XP up to Windows 10), either 32 or 64 bits. The primarily supported compilers -are Microsoft Visual C++ (versions 2003 up to 2019 are supported, at least 2005 +are Microsoft Visual C++ (versions 2005 up to 2019 are supported, at least 2005 is recommended) and GNU g++ (either from the traditional MinGW, TDM-GCC or MinGW-w64 distributions). diff --git a/docs/doxygen/mainpages/platdetails.h b/docs/doxygen/mainpages/platdetails.h index 77a95e200c..ea466b901e 100644 --- a/docs/doxygen/mainpages/platdetails.h +++ b/docs/doxygen/mainpages/platdetails.h @@ -90,7 +90,7 @@ It is no longer actively maintained and by now rather obsolete. wxMSW is a port of wxWidgets for the Windows platforms (Windows XP and later are supported). wxMSW provides native look and feel for each Windows version. This port can be compiled with several compilers including Microsoft -VC++ 2003 or later, MinGW, Cygwin as well as cross-compilation with a +VC++ 2005 or later, MinGW, Cygwin as well as cross-compilation with a Linux-hosted MinGW tool chain. @subpage plat_msw_install "Build and Install Instructions" diff --git a/docs/msw/install.md b/docs/msw/install.md index c31baa46ef..3e5a4962a7 100644 --- a/docs/msw/install.md +++ b/docs/msw/install.md @@ -84,11 +84,11 @@ Microsoft Visual C++ Compilation {#msw_build_msvs} * From the IDE using the provided project files: -Ready to use project files are provided for VC++ versions 7, 8, 9, -10, 11, 12, 14, 15 and 16 (also known as MSVS 2003, 2005, 2008, 2010, 2012, +Ready to use project files are provided for VC++ versions 8, 9, +10, 11, 12, 14, 15 and 16 (also known as MSVS 2005, 2008, 2010, 2012, 2013, 2015, 2017 and 2019 respectively). -Simply open `wx_vcN.sln` (for N=7, 8, 9, 10, 11, 12, 14, 15 or 16) file, +Simply open `wx_vcN.sln` (for N=8, 9, 10, 11, 12, 14, 15 or 16) file, select the appropriate configuration (Debug or Release, static or DLL) and build the solution. Notice that when building a DLL configuration, you may need to perform the build several times because the projects