├── .editorconfig ├── .gitignore ├── .mailmap ├── AUTHORS.txt ├── CHANGES.txt ├── COPYING.txt ├── README.md ├── bin ├── Microsoft.Windows.DebuggersAndTools.manifest ├── dbghelp.dll ├── vld.h ├── vld.ini ├── vld.lib ├── vld_def.h ├── vld_x64.dll └── vld_x64.pdb ├── change_toolset.ps1 ├── lib ├── cppformat │ ├── ChangeLog.rst │ ├── LICENSE.rst │ ├── format.cc │ ├── format.h │ ├── format.vcxproj │ ├── format.vcxproj.filters │ ├── posix.cc │ └── posix.h ├── dbghelp │ ├── include │ │ ├── DbgHelp.h │ │ └── minidumpapiset.h │ └── lib │ │ ├── Win32 │ │ └── DbgHelp.Lib │ │ └── x64 │ │ └── DbgHelp.Lib └── gtest │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── configure │ ├── configure.ac │ ├── include │ └── gtest │ │ ├── gtest-death-test.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-param-test.h.pump │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ └── internal │ │ ├── gtest-death-test-internal.h │ │ ├── gtest-filepath.h │ │ ├── gtest-internal.h │ │ ├── gtest-linked_ptr.h │ │ ├── gtest-param-util-generated.h │ │ ├── gtest-param-util-generated.h.pump │ │ ├── gtest-param-util.h │ │ ├── gtest-port.h │ │ ├── gtest-string.h │ │ ├── gtest-tuple.h │ │ ├── gtest-tuple.h.pump │ │ ├── gtest-type-util.h │ │ └── gtest-type-util.h.pump │ ├── msvc │ ├── gtest-md.sln │ ├── gtest.sln │ ├── gtest.vcxproj │ ├── gtest.vcxproj.filters │ ├── gtest_main.vcxproj │ ├── gtest_main.vcxproj.filters │ ├── gtest_prod_test.vcxproj │ ├── gtest_prod_test.vcxproj.filters │ ├── gtest_unittest.vcxproj │ └── gtest_unittest.vcxproj.filters │ └── src │ ├── gtest-all.cc │ ├── gtest-death-test.cc │ ├── gtest-filepath.cc │ ├── gtest-internal-inl.h │ ├── gtest-port.cc │ ├── gtest-printers.cc │ ├── gtest-test-part.cc │ ├── gtest-typed-test.cc │ ├── gtest.cc │ └── gtest_main.cc ├── mfc_detect ├── StdAfx.cpp ├── StdAfx.h ├── res │ ├── vldmfc.ico │ └── vldmfc.rc2 ├── resource.h ├── vldmfc.cpp ├── vldmfc.h ├── vldmfc.rc ├── vldmfc_detect.sln ├── vldmfc_detect.vcxproj ├── vldmfc_detect.vcxproj.filters ├── vldmfc_detect_vs10.sln ├── vldmfc_detect_vs11.sln ├── vldmfc_detect_vs14.sln └── vldmfc_detect_vs15.sln ├── setup ├── WizSmallImage.bmp ├── build_version.bat ├── dbghelp │ ├── x64 │ │ ├── Microsoft.Windows.DebuggersAndTools.manifest │ │ └── dbghelp.dll │ └── x86 │ │ ├── Microsoft.Windows.DebuggersAndTools.manifest │ │ └── dbghelp.dll ├── editenv │ └── editenv.dll ├── license-free.txt ├── modpath.iss ├── version.h └── vld-setup.iss ├── src ├── callstack.cpp ├── callstack.h ├── criticalsection.h ├── crtmfcpatch.h ├── dbghelp.h ├── dllspatches.cpp ├── loaderlock.h ├── map.h ├── ntapi.cpp ├── ntapi.h ├── resource.h ├── runalltests.bat ├── runtests.bat ├── set.h ├── stdafx.cpp ├── stdafx.h ├── tests │ ├── Common.props │ ├── basics │ │ ├── Allocs.cpp │ │ ├── Allocs.h │ │ ├── basics.cpp │ │ ├── basics.vcxproj │ │ ├── basics.vcxproj.filters │ │ ├── basics_disabled.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── console │ │ ├── README.md │ │ ├── main.c │ │ ├── main.cpp │ │ ├── vldconsole.sln │ │ ├── vldconsole.vcxproj │ │ ├── vldconsole.vcxproj.filters │ │ └── vldconsole_vs10.sln │ ├── copydlls.bat │ ├── corruption │ │ ├── Tests.cpp │ │ ├── Tests.h │ │ ├── corruption.cpp │ │ ├── corruption.vcxproj │ │ ├── corruption.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── dynamic_app │ │ ├── LoadTests.cpp │ │ ├── LoadTests.h │ │ ├── ThreadTest.cpp │ │ ├── ThreadTests.h │ │ ├── dynamic_app.cpp │ │ ├── dynamic_app.vcxproj │ │ ├── dynamic_app.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── dynamic_dll │ │ ├── dllmain.cpp │ │ ├── dynamic.cpp │ │ ├── dynamic.h │ │ ├── dynamic.vcxproj │ │ ├── dynamic.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── mfc │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── res │ │ │ ├── vldmfc.ico │ │ │ └── vldmfc.rc2 │ │ ├── resource.h │ │ ├── vldmfc.cpp │ │ ├── vldmfc.h │ │ ├── vldmfc.rc │ │ ├── vldmfc.sln │ │ ├── vldmfc.vcxproj │ │ ├── vldmfc.vcxproj.filters │ │ ├── vldmfc_vs10.sln │ │ ├── vldmfcdlg.cpp │ │ └── vldmfcdlg.h │ ├── mfc_dll │ │ ├── Resource.h │ │ ├── mfc.cpp │ │ ├── mfc.def │ │ ├── mfc.h │ │ ├── mfc.rc │ │ ├── mfc.vcxproj │ │ ├── mfc.vcxproj.filters │ │ ├── res │ │ │ └── mfc.rc2 │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── suite │ │ ├── testsuite.cpp │ │ ├── testsuite.vcxproj │ │ ├── testsuite.vcxproj.filters │ │ └── testsuite.vcxproj.vspscc │ ├── vld_ComTest │ │ ├── ComTest.aps │ │ ├── ComTest.cpp │ │ ├── ComTest.def │ │ ├── ComTest.idl │ │ ├── ComTest.rc │ │ ├── ComTest.rgs │ │ ├── ComTest.sln │ │ ├── ComTest_vs14.vcxproj │ │ ├── ComTest_vs14.vcxproj.filters │ │ ├── MyMath.cpp │ │ ├── MyMath.h │ │ ├── MyMath.rgs │ │ ├── Resource.h │ │ ├── dlldata.c │ │ ├── dllmain.cpp │ │ ├── dllmain.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── xdlldata.c │ │ └── xdlldata.h │ ├── vld_dll1 │ │ ├── dllmain.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── vld_dll1_vs14.vcxproj │ │ └── vld_dll1_vs14.vcxproj.filters │ ├── vld_dll2 │ │ ├── dllmain.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── vld_dll2_vs14.vcxproj │ │ └── vld_dll2_vs14.vcxproj.filters │ ├── vld_main │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── vld_main.cpp │ │ ├── vld_main_vs14.vcxproj │ │ └── vld_main_vs14.vcxproj.filters │ ├── vld_main_test │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── vld_main_test.cpp │ │ ├── vld_main_test_vs14.vcxproj │ │ └── vld_main_test_vs14.vcxproj.filters │ └── vld_unload │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── vld_unload.cpp │ │ ├── vld_unload_vs14.vcxproj │ │ └── vld_unload_vs14.vcxproj.filters ├── tree.h ├── utility.cpp ├── utility.h ├── vld.cpp ├── vld.dll.dependency.x64.manifest ├── vld.dll.dependency.x86.manifest ├── vld.h ├── vld.manifest ├── vld.natvis ├── vld.rc ├── vld.vcxproj ├── vld.vcxproj.filters ├── vld_def.h ├── vld_hooks.cpp ├── vldallocator.h ├── vldapi.cpp ├── vldheap.cpp ├── vldheap.h └── vldint.h ├── vld.ini ├── vld.sln └── vld_wo_mfc.sln /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/.mailmap -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/README.md -------------------------------------------------------------------------------- /bin/Microsoft.Windows.DebuggersAndTools.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/bin/Microsoft.Windows.DebuggersAndTools.manifest -------------------------------------------------------------------------------- /bin/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/bin/dbghelp.dll -------------------------------------------------------------------------------- /bin/vld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/bin/vld.h -------------------------------------------------------------------------------- /bin/vld.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/bin/vld.ini -------------------------------------------------------------------------------- /bin/vld.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/bin/vld.lib -------------------------------------------------------------------------------- /bin/vld_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/bin/vld_def.h -------------------------------------------------------------------------------- /bin/vld_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/bin/vld_x64.dll -------------------------------------------------------------------------------- /bin/vld_x64.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/bin/vld_x64.pdb -------------------------------------------------------------------------------- /change_toolset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/change_toolset.ps1 -------------------------------------------------------------------------------- /lib/cppformat/ChangeLog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/cppformat/ChangeLog.rst -------------------------------------------------------------------------------- /lib/cppformat/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/cppformat/LICENSE.rst -------------------------------------------------------------------------------- /lib/cppformat/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/cppformat/format.cc -------------------------------------------------------------------------------- /lib/cppformat/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/cppformat/format.h -------------------------------------------------------------------------------- /lib/cppformat/format.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/cppformat/format.vcxproj -------------------------------------------------------------------------------- /lib/cppformat/format.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/cppformat/format.vcxproj.filters -------------------------------------------------------------------------------- /lib/cppformat/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/cppformat/posix.cc -------------------------------------------------------------------------------- /lib/cppformat/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/cppformat/posix.h -------------------------------------------------------------------------------- /lib/dbghelp/include/DbgHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/dbghelp/include/DbgHelp.h -------------------------------------------------------------------------------- /lib/dbghelp/include/minidumpapiset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/dbghelp/include/minidumpapiset.h -------------------------------------------------------------------------------- /lib/dbghelp/lib/Win32/DbgHelp.Lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/dbghelp/lib/Win32/DbgHelp.Lib -------------------------------------------------------------------------------- /lib/dbghelp/lib/x64/DbgHelp.Lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/dbghelp/lib/x64/DbgHelp.Lib -------------------------------------------------------------------------------- /lib/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/CHANGES -------------------------------------------------------------------------------- /lib/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /lib/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /lib/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/LICENSE -------------------------------------------------------------------------------- /lib/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/Makefile.am -------------------------------------------------------------------------------- /lib/gtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/Makefile.in -------------------------------------------------------------------------------- /lib/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/README -------------------------------------------------------------------------------- /lib/gtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/configure -------------------------------------------------------------------------------- /lib/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/configure.ac -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /lib/gtest/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /lib/gtest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /lib/gtest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/msvc/gtest.sln -------------------------------------------------------------------------------- /lib/gtest/msvc/gtest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/msvc/gtest.vcxproj -------------------------------------------------------------------------------- /lib/gtest/msvc/gtest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/msvc/gtest.vcxproj.filters -------------------------------------------------------------------------------- /lib/gtest/msvc/gtest_main.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/msvc/gtest_main.vcxproj -------------------------------------------------------------------------------- /lib/gtest/msvc/gtest_main.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/msvc/gtest_main.vcxproj.filters -------------------------------------------------------------------------------- /lib/gtest/msvc/gtest_prod_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/msvc/gtest_prod_test.vcxproj -------------------------------------------------------------------------------- /lib/gtest/msvc/gtest_prod_test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/msvc/gtest_prod_test.vcxproj.filters -------------------------------------------------------------------------------- /lib/gtest/msvc/gtest_unittest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/msvc/gtest_unittest.vcxproj -------------------------------------------------------------------------------- /lib/gtest/msvc/gtest_unittest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/msvc/gtest_unittest.vcxproj.filters -------------------------------------------------------------------------------- /lib/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /lib/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/src/gtest.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/lib/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /mfc_detect/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/StdAfx.cpp -------------------------------------------------------------------------------- /mfc_detect/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/StdAfx.h -------------------------------------------------------------------------------- /mfc_detect/res/vldmfc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/res/vldmfc.ico -------------------------------------------------------------------------------- /mfc_detect/res/vldmfc.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/res/vldmfc.rc2 -------------------------------------------------------------------------------- /mfc_detect/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/resource.h -------------------------------------------------------------------------------- /mfc_detect/vldmfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/vldmfc.cpp -------------------------------------------------------------------------------- /mfc_detect/vldmfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/vldmfc.h -------------------------------------------------------------------------------- /mfc_detect/vldmfc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/vldmfc.rc -------------------------------------------------------------------------------- /mfc_detect/vldmfc_detect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/vldmfc_detect.sln -------------------------------------------------------------------------------- /mfc_detect/vldmfc_detect.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/vldmfc_detect.vcxproj -------------------------------------------------------------------------------- /mfc_detect/vldmfc_detect.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/vldmfc_detect.vcxproj.filters -------------------------------------------------------------------------------- /mfc_detect/vldmfc_detect_vs10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/vldmfc_detect_vs10.sln -------------------------------------------------------------------------------- /mfc_detect/vldmfc_detect_vs11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/vldmfc_detect_vs11.sln -------------------------------------------------------------------------------- /mfc_detect/vldmfc_detect_vs14.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/vldmfc_detect_vs14.sln -------------------------------------------------------------------------------- /mfc_detect/vldmfc_detect_vs15.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/mfc_detect/vldmfc_detect_vs15.sln -------------------------------------------------------------------------------- /setup/WizSmallImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/WizSmallImage.bmp -------------------------------------------------------------------------------- /setup/build_version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/build_version.bat -------------------------------------------------------------------------------- /setup/dbghelp/x64/Microsoft.Windows.DebuggersAndTools.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/dbghelp/x64/Microsoft.Windows.DebuggersAndTools.manifest -------------------------------------------------------------------------------- /setup/dbghelp/x64/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/dbghelp/x64/dbghelp.dll -------------------------------------------------------------------------------- /setup/dbghelp/x86/Microsoft.Windows.DebuggersAndTools.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/dbghelp/x86/Microsoft.Windows.DebuggersAndTools.manifest -------------------------------------------------------------------------------- /setup/dbghelp/x86/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/dbghelp/x86/dbghelp.dll -------------------------------------------------------------------------------- /setup/editenv/editenv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/editenv/editenv.dll -------------------------------------------------------------------------------- /setup/license-free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/license-free.txt -------------------------------------------------------------------------------- /setup/modpath.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/modpath.iss -------------------------------------------------------------------------------- /setup/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/version.h -------------------------------------------------------------------------------- /setup/vld-setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/setup/vld-setup.iss -------------------------------------------------------------------------------- /src/callstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/callstack.cpp -------------------------------------------------------------------------------- /src/callstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/callstack.h -------------------------------------------------------------------------------- /src/criticalsection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/criticalsection.h -------------------------------------------------------------------------------- /src/crtmfcpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/crtmfcpatch.h -------------------------------------------------------------------------------- /src/dbghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/dbghelp.h -------------------------------------------------------------------------------- /src/dllspatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/dllspatches.cpp -------------------------------------------------------------------------------- /src/loaderlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/loaderlock.h -------------------------------------------------------------------------------- /src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/map.h -------------------------------------------------------------------------------- /src/ntapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/ntapi.cpp -------------------------------------------------------------------------------- /src/ntapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/ntapi.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/runalltests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/runalltests.bat -------------------------------------------------------------------------------- /src/runtests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/runtests.bat -------------------------------------------------------------------------------- /src/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/set.h -------------------------------------------------------------------------------- /src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/stdafx.cpp -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/tests/Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/Common.props -------------------------------------------------------------------------------- /src/tests/basics/Allocs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/basics/Allocs.cpp -------------------------------------------------------------------------------- /src/tests/basics/Allocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/basics/Allocs.h -------------------------------------------------------------------------------- /src/tests/basics/basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/basics/basics.cpp -------------------------------------------------------------------------------- /src/tests/basics/basics.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/basics/basics.vcxproj -------------------------------------------------------------------------------- /src/tests/basics/basics.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/basics/basics.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/basics/basics_disabled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/basics/basics_disabled.cpp -------------------------------------------------------------------------------- /src/tests/basics/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/basics/stdafx.cpp -------------------------------------------------------------------------------- /src/tests/basics/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/basics/stdafx.h -------------------------------------------------------------------------------- /src/tests/basics/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/basics/targetver.h -------------------------------------------------------------------------------- /src/tests/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/console/README.md -------------------------------------------------------------------------------- /src/tests/console/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/console/main.c -------------------------------------------------------------------------------- /src/tests/console/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/console/main.cpp -------------------------------------------------------------------------------- /src/tests/console/vldconsole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/console/vldconsole.sln -------------------------------------------------------------------------------- /src/tests/console/vldconsole.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/console/vldconsole.vcxproj -------------------------------------------------------------------------------- /src/tests/console/vldconsole.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/console/vldconsole.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/console/vldconsole_vs10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/console/vldconsole_vs10.sln -------------------------------------------------------------------------------- /src/tests/copydlls.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/copydlls.bat -------------------------------------------------------------------------------- /src/tests/corruption/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/corruption/Tests.cpp -------------------------------------------------------------------------------- /src/tests/corruption/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/corruption/Tests.h -------------------------------------------------------------------------------- /src/tests/corruption/corruption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/corruption/corruption.cpp -------------------------------------------------------------------------------- /src/tests/corruption/corruption.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/corruption/corruption.vcxproj -------------------------------------------------------------------------------- /src/tests/corruption/corruption.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/corruption/corruption.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/corruption/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/corruption/stdafx.cpp -------------------------------------------------------------------------------- /src/tests/corruption/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/corruption/stdafx.h -------------------------------------------------------------------------------- /src/tests/corruption/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/corruption/targetver.h -------------------------------------------------------------------------------- /src/tests/dynamic_app/LoadTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_app/LoadTests.cpp -------------------------------------------------------------------------------- /src/tests/dynamic_app/LoadTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_app/LoadTests.h -------------------------------------------------------------------------------- /src/tests/dynamic_app/ThreadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_app/ThreadTest.cpp -------------------------------------------------------------------------------- /src/tests/dynamic_app/ThreadTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_app/ThreadTests.h -------------------------------------------------------------------------------- /src/tests/dynamic_app/dynamic_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_app/dynamic_app.cpp -------------------------------------------------------------------------------- /src/tests/dynamic_app/dynamic_app.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_app/dynamic_app.vcxproj -------------------------------------------------------------------------------- /src/tests/dynamic_app/dynamic_app.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_app/dynamic_app.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/dynamic_app/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_app/stdafx.cpp -------------------------------------------------------------------------------- /src/tests/dynamic_app/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_app/stdafx.h -------------------------------------------------------------------------------- /src/tests/dynamic_app/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_app/targetver.h -------------------------------------------------------------------------------- /src/tests/dynamic_dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_dll/dllmain.cpp -------------------------------------------------------------------------------- /src/tests/dynamic_dll/dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_dll/dynamic.cpp -------------------------------------------------------------------------------- /src/tests/dynamic_dll/dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_dll/dynamic.h -------------------------------------------------------------------------------- /src/tests/dynamic_dll/dynamic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_dll/dynamic.vcxproj -------------------------------------------------------------------------------- /src/tests/dynamic_dll/dynamic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_dll/dynamic.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/dynamic_dll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_dll/stdafx.cpp -------------------------------------------------------------------------------- /src/tests/dynamic_dll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_dll/stdafx.h -------------------------------------------------------------------------------- /src/tests/dynamic_dll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/dynamic_dll/targetver.h -------------------------------------------------------------------------------- /src/tests/mfc/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/StdAfx.cpp -------------------------------------------------------------------------------- /src/tests/mfc/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/StdAfx.h -------------------------------------------------------------------------------- /src/tests/mfc/res/vldmfc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/res/vldmfc.ico -------------------------------------------------------------------------------- /src/tests/mfc/res/vldmfc.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/res/vldmfc.rc2 -------------------------------------------------------------------------------- /src/tests/mfc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/resource.h -------------------------------------------------------------------------------- /src/tests/mfc/vldmfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/vldmfc.cpp -------------------------------------------------------------------------------- /src/tests/mfc/vldmfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/vldmfc.h -------------------------------------------------------------------------------- /src/tests/mfc/vldmfc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/vldmfc.rc -------------------------------------------------------------------------------- /src/tests/mfc/vldmfc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/vldmfc.sln -------------------------------------------------------------------------------- /src/tests/mfc/vldmfc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/vldmfc.vcxproj -------------------------------------------------------------------------------- /src/tests/mfc/vldmfc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/vldmfc.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/mfc/vldmfc_vs10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/vldmfc_vs10.sln -------------------------------------------------------------------------------- /src/tests/mfc/vldmfcdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/vldmfcdlg.cpp -------------------------------------------------------------------------------- /src/tests/mfc/vldmfcdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc/vldmfcdlg.h -------------------------------------------------------------------------------- /src/tests/mfc_dll/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/Resource.h -------------------------------------------------------------------------------- /src/tests/mfc_dll/mfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/mfc.cpp -------------------------------------------------------------------------------- /src/tests/mfc_dll/mfc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/mfc.def -------------------------------------------------------------------------------- /src/tests/mfc_dll/mfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/mfc.h -------------------------------------------------------------------------------- /src/tests/mfc_dll/mfc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/mfc.rc -------------------------------------------------------------------------------- /src/tests/mfc_dll/mfc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/mfc.vcxproj -------------------------------------------------------------------------------- /src/tests/mfc_dll/mfc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/mfc.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/mfc_dll/res/mfc.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/res/mfc.rc2 -------------------------------------------------------------------------------- /src/tests/mfc_dll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/stdafx.cpp -------------------------------------------------------------------------------- /src/tests/mfc_dll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/stdafx.h -------------------------------------------------------------------------------- /src/tests/mfc_dll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/mfc_dll/targetver.h -------------------------------------------------------------------------------- /src/tests/suite/testsuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/suite/testsuite.cpp -------------------------------------------------------------------------------- /src/tests/suite/testsuite.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/suite/testsuite.vcxproj -------------------------------------------------------------------------------- /src/tests/suite/testsuite.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/suite/testsuite.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/suite/testsuite.vcxproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/suite/testsuite.vcxproj.vspscc -------------------------------------------------------------------------------- /src/tests/vld_ComTest/ComTest.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/ComTest.aps -------------------------------------------------------------------------------- /src/tests/vld_ComTest/ComTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/ComTest.cpp -------------------------------------------------------------------------------- /src/tests/vld_ComTest/ComTest.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/ComTest.def -------------------------------------------------------------------------------- /src/tests/vld_ComTest/ComTest.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/ComTest.idl -------------------------------------------------------------------------------- /src/tests/vld_ComTest/ComTest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/ComTest.rc -------------------------------------------------------------------------------- /src/tests/vld_ComTest/ComTest.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /src/tests/vld_ComTest/ComTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/ComTest.sln -------------------------------------------------------------------------------- /src/tests/vld_ComTest/ComTest_vs14.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/ComTest_vs14.vcxproj -------------------------------------------------------------------------------- /src/tests/vld_ComTest/ComTest_vs14.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/ComTest_vs14.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/vld_ComTest/MyMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/MyMath.cpp -------------------------------------------------------------------------------- /src/tests/vld_ComTest/MyMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/MyMath.h -------------------------------------------------------------------------------- /src/tests/vld_ComTest/MyMath.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/MyMath.rgs -------------------------------------------------------------------------------- /src/tests/vld_ComTest/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/Resource.h -------------------------------------------------------------------------------- /src/tests/vld_ComTest/dlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/dlldata.c -------------------------------------------------------------------------------- /src/tests/vld_ComTest/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/dllmain.cpp -------------------------------------------------------------------------------- /src/tests/vld_ComTest/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/dllmain.h -------------------------------------------------------------------------------- /src/tests/vld_ComTest/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /src/tests/vld_ComTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/stdafx.h -------------------------------------------------------------------------------- /src/tests/vld_ComTest/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /src/tests/vld_ComTest/xdlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/xdlldata.c -------------------------------------------------------------------------------- /src/tests/vld_ComTest/xdlldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_ComTest/xdlldata.h -------------------------------------------------------------------------------- /src/tests/vld_dll1/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll1/dllmain.cpp -------------------------------------------------------------------------------- /src/tests/vld_dll1/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll1/stdafx.cpp -------------------------------------------------------------------------------- /src/tests/vld_dll1/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll1/stdafx.h -------------------------------------------------------------------------------- /src/tests/vld_dll1/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll1/targetver.h -------------------------------------------------------------------------------- /src/tests/vld_dll1/vld_dll1_vs14.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll1/vld_dll1_vs14.vcxproj -------------------------------------------------------------------------------- /src/tests/vld_dll1/vld_dll1_vs14.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll1/vld_dll1_vs14.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/vld_dll2/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll2/dllmain.cpp -------------------------------------------------------------------------------- /src/tests/vld_dll2/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll2/stdafx.cpp -------------------------------------------------------------------------------- /src/tests/vld_dll2/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll2/stdafx.h -------------------------------------------------------------------------------- /src/tests/vld_dll2/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll2/targetver.h -------------------------------------------------------------------------------- /src/tests/vld_dll2/vld_dll2_vs14.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll2/vld_dll2_vs14.vcxproj -------------------------------------------------------------------------------- /src/tests/vld_dll2/vld_dll2_vs14.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_dll2/vld_dll2_vs14.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/vld_main/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main/stdafx.cpp -------------------------------------------------------------------------------- /src/tests/vld_main/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main/stdafx.h -------------------------------------------------------------------------------- /src/tests/vld_main/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main/targetver.h -------------------------------------------------------------------------------- /src/tests/vld_main/vld_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main/vld_main.cpp -------------------------------------------------------------------------------- /src/tests/vld_main/vld_main_vs14.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main/vld_main_vs14.vcxproj -------------------------------------------------------------------------------- /src/tests/vld_main/vld_main_vs14.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main/vld_main_vs14.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/vld_main_test/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main_test/stdafx.cpp -------------------------------------------------------------------------------- /src/tests/vld_main_test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main_test/stdafx.h -------------------------------------------------------------------------------- /src/tests/vld_main_test/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main_test/targetver.h -------------------------------------------------------------------------------- /src/tests/vld_main_test/vld_main_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main_test/vld_main_test.cpp -------------------------------------------------------------------------------- /src/tests/vld_main_test/vld_main_test_vs14.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main_test/vld_main_test_vs14.vcxproj -------------------------------------------------------------------------------- /src/tests/vld_main_test/vld_main_test_vs14.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_main_test/vld_main_test_vs14.vcxproj.filters -------------------------------------------------------------------------------- /src/tests/vld_unload/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_unload/stdafx.cpp -------------------------------------------------------------------------------- /src/tests/vld_unload/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_unload/stdafx.h -------------------------------------------------------------------------------- /src/tests/vld_unload/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_unload/targetver.h -------------------------------------------------------------------------------- /src/tests/vld_unload/vld_unload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_unload/vld_unload.cpp -------------------------------------------------------------------------------- /src/tests/vld_unload/vld_unload_vs14.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_unload/vld_unload_vs14.vcxproj -------------------------------------------------------------------------------- /src/tests/vld_unload/vld_unload_vs14.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tests/vld_unload/vld_unload_vs14.vcxproj.filters -------------------------------------------------------------------------------- /src/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/tree.h -------------------------------------------------------------------------------- /src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/utility.cpp -------------------------------------------------------------------------------- /src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/utility.h -------------------------------------------------------------------------------- /src/vld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld.cpp -------------------------------------------------------------------------------- /src/vld.dll.dependency.x64.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld.dll.dependency.x64.manifest -------------------------------------------------------------------------------- /src/vld.dll.dependency.x86.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld.dll.dependency.x86.manifest -------------------------------------------------------------------------------- /src/vld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld.h -------------------------------------------------------------------------------- /src/vld.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld.manifest -------------------------------------------------------------------------------- /src/vld.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld.natvis -------------------------------------------------------------------------------- /src/vld.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld.rc -------------------------------------------------------------------------------- /src/vld.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld.vcxproj -------------------------------------------------------------------------------- /src/vld.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld.vcxproj.filters -------------------------------------------------------------------------------- /src/vld_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld_def.h -------------------------------------------------------------------------------- /src/vld_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vld_hooks.cpp -------------------------------------------------------------------------------- /src/vldallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vldallocator.h -------------------------------------------------------------------------------- /src/vldapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vldapi.cpp -------------------------------------------------------------------------------- /src/vldheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vldheap.cpp -------------------------------------------------------------------------------- /src/vldheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vldheap.h -------------------------------------------------------------------------------- /src/vldint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/src/vldint.h -------------------------------------------------------------------------------- /vld.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/vld.ini -------------------------------------------------------------------------------- /vld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/vld.sln -------------------------------------------------------------------------------- /vld_wo_mfc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronoxor/vld/HEAD/vld_wo_mfc.sln --------------------------------------------------------------------------------