├── DebugPlugin.sln ├── DebugPlugin ├── DebugPlugin.vcxproj ├── DebugPlugin.vcxproj.filters ├── DebugPlugin.vcxproj.user ├── DriverIo.cpp ├── DriverIo.h ├── Examples │ ├── ExampleContributions.cpp │ ├── ExampleFunctionSymbols.cpp │ ├── ExampleMain.cpp │ ├── ExampleMemoryMappedFile.cpp │ ├── ExampleMemoryMappedFile.h │ ├── ExampleSymbols.cpp │ ├── ExampleTimedScope.cpp │ ├── ExampleTimedScope.h │ ├── Examples_PCH.cpp │ └── Examples_PCH.h ├── Foundation │ ├── PDB_ArrayView.h │ ├── PDB_Assert.h │ ├── PDB_BitOperators.h │ ├── PDB_BitUtil.h │ ├── PDB_DisableWarningsPop.h │ ├── PDB_DisableWarningsPush.h │ ├── PDB_Forward.h │ ├── PDB_Log.h │ ├── PDB_Macros.h │ ├── PDB_Memory.h │ ├── PDB_Move.h │ ├── PDB_Platform.h │ ├── PDB_PointerUtil.h │ └── PDB_Warnings.h ├── HookFunction.cpp ├── HookFunction.h ├── LoadSymbol.cpp ├── LoadSymbol.h ├── PDB.cpp ├── PDB.h ├── PDB_CoalescedMSFStream.cpp ├── PDB_CoalescedMSFStream.h ├── PDB_DBIStream.cpp ├── PDB_DBIStream.h ├── PDB_DBITypes.cpp ├── PDB_DBITypes.h ├── PDB_DirectMSFStream.cpp ├── PDB_DirectMSFStream.h ├── PDB_ErrorCodes.h ├── PDB_GlobalSymbolStream.cpp ├── PDB_GlobalSymbolStream.h ├── PDB_IPIStream.cpp ├── PDB_IPIStream.h ├── PDB_IPITypes.h ├── PDB_ImageSectionStream.cpp ├── PDB_ImageSectionStream.h ├── PDB_InfoStream.cpp ├── PDB_InfoStream.h ├── PDB_ModuleInfoStream.cpp ├── PDB_ModuleInfoStream.h ├── PDB_ModuleSymbolStream.cpp ├── PDB_ModuleSymbolStream.h ├── PDB_PCH.cpp ├── PDB_PCH.h ├── PDB_PublicSymbolStream.cpp ├── PDB_PublicSymbolStream.h ├── PDB_RawFile.cpp ├── PDB_RawFile.h ├── PDB_SectionContributionStream.cpp ├── PDB_SectionContributionStream.h ├── PDB_SourceFileStream.cpp ├── PDB_SourceFileStream.h ├── PDB_Types.cpp ├── PDB_Types.h ├── PDB_Util.h ├── VehFunction.cpp ├── VehFunction.h ├── common.cpp ├── common.h ├── debugStruct.cpp ├── debugStruct.h ├── dllmain.cpp ├── driver.cpp ├── driver.h ├── gui.cpp ├── gui.h ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imgui_window.cpp │ ├── imgui_window.h │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── injector.cpp ├── injector.h ├── intel_driver_resource.hpp ├── log.cpp ├── log.h ├── minhook │ ├── MinHook.h │ ├── buffer.c │ ├── buffer.h │ ├── hde │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ ├── hook.c │ ├── trampoline.c │ └── trampoline.h ├── nt.hpp └── win-url-download.hpp ├── README.md ├── VtDebug ├── Function.cpp ├── Function.h ├── VtDebug.sln ├── VtDebug.vcxproj ├── VtDebug.vcxproj.filters ├── VtDebug.vcxproj.user ├── asm.h ├── common.h ├── ept.cpp ├── ept.h ├── event_notify.cpp ├── event_notify.h ├── exapi.h ├── handleTable.cpp ├── handleTable.h ├── ia32_type.h ├── ioDevice.cpp ├── ioDevice.h ├── kernel_stl.cpp ├── main.cpp ├── stl.cpp ├── stl.h ├── struct.h ├── symbol.cpp ├── symbol.h ├── util_page_constants.h ├── utl.cpp ├── utl.h ├── vm.cpp ├── vm.h ├── vmm.cpp ├── vmm.h ├── vtdump.cpp ├── vtdump.h └── x64.asm ├── veh_debug ├── veh_debug.sln └── veh_debug │ ├── exports.def │ ├── main.cpp │ ├── main.h │ ├── ntex │ ├── ntex.def │ ├── ntex.exp │ └── ntex.lib │ ├── veh_debug.vcxproj │ ├── veh_debug.vcxproj.filters │ └── veh_debug.vcxproj.user └── x64dbgTest ├── cpp.hint ├── dllmain.cpp ├── pluginsdk ├── DeviceNameResolver │ ├── DeviceNameResolver.h │ ├── DeviceNameResolver_x64.a │ ├── DeviceNameResolver_x64.lib │ ├── DeviceNameResolver_x86.a │ └── DeviceNameResolver_x86.lib ├── TitanEngine │ ├── TitanEngine.h │ ├── TitanEngine_x64.a │ ├── TitanEngine_x64.lib │ ├── TitanEngine_x86.a │ └── TitanEngine_x86.lib ├── XEDParse │ ├── XEDParse.h │ ├── XEDParse_x64.a │ ├── XEDParse_x64.lib │ ├── XEDParse_x86.a │ └── XEDParse_x86.lib ├── _dbgfunctions.h ├── _plugin_types.h ├── _plugins.h ├── _scriptapi.h ├── _scriptapi_argument.h ├── _scriptapi_assembler.h ├── _scriptapi_bookmark.h ├── _scriptapi_comment.h ├── _scriptapi_debug.h ├── _scriptapi_flag.h ├── _scriptapi_function.h ├── _scriptapi_gui.h ├── _scriptapi_label.h ├── _scriptapi_memory.h ├── _scriptapi_misc.h ├── _scriptapi_module.h ├── _scriptapi_pattern.h ├── _scriptapi_register.h ├── _scriptapi_stack.h ├── _scriptapi_symbol.h ├── bridgegraph.h ├── bridgelist.h ├── bridgemain.h ├── dbghelp │ ├── dbghelp.h │ ├── dbghelp_x64.a │ ├── dbghelp_x64.lib │ ├── dbghelp_x86.a │ └── dbghelp_x86.lib ├── jansson │ ├── jansson.h │ ├── jansson_config.h │ ├── jansson_x64.a │ ├── jansson_x64.lib │ ├── jansson_x64dbg.h │ ├── jansson_x86.a │ └── jansson_x86.lib ├── lz4 │ ├── lz4.h │ ├── lz4_x64.a │ ├── lz4_x64.lib │ ├── lz4_x86.a │ ├── lz4_x86.lib │ ├── lz4file.h │ └── lz4hc.h ├── x32bridge.lib ├── x32dbg.lib ├── x64bridge.lib └── x64dbg.lib ├── x64dbgTest.vcxproj ├── x64dbgTest.vcxproj.filters └── x64dbgTest.vcxproj.user /DebugPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin.sln -------------------------------------------------------------------------------- /DebugPlugin/DebugPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/DebugPlugin.vcxproj -------------------------------------------------------------------------------- /DebugPlugin/DebugPlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/DebugPlugin.vcxproj.filters -------------------------------------------------------------------------------- /DebugPlugin/DebugPlugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/DebugPlugin.vcxproj.user -------------------------------------------------------------------------------- /DebugPlugin/DriverIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/DriverIo.cpp -------------------------------------------------------------------------------- /DebugPlugin/DriverIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/DriverIo.h -------------------------------------------------------------------------------- /DebugPlugin/Examples/ExampleContributions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Examples/ExampleContributions.cpp -------------------------------------------------------------------------------- /DebugPlugin/Examples/ExampleFunctionSymbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Examples/ExampleFunctionSymbols.cpp -------------------------------------------------------------------------------- /DebugPlugin/Examples/ExampleMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Examples/ExampleMain.cpp -------------------------------------------------------------------------------- /DebugPlugin/Examples/ExampleMemoryMappedFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Examples/ExampleMemoryMappedFile.cpp -------------------------------------------------------------------------------- /DebugPlugin/Examples/ExampleMemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Examples/ExampleMemoryMappedFile.h -------------------------------------------------------------------------------- /DebugPlugin/Examples/ExampleSymbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Examples/ExampleSymbols.cpp -------------------------------------------------------------------------------- /DebugPlugin/Examples/ExampleTimedScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Examples/ExampleTimedScope.cpp -------------------------------------------------------------------------------- /DebugPlugin/Examples/ExampleTimedScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Examples/ExampleTimedScope.h -------------------------------------------------------------------------------- /DebugPlugin/Examples/Examples_PCH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Examples/Examples_PCH.cpp -------------------------------------------------------------------------------- /DebugPlugin/Examples/Examples_PCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Examples/Examples_PCH.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_ArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_ArrayView.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_Assert.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_BitOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_BitOperators.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_BitUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_BitUtil.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_DisableWarningsPop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_DisableWarningsPop.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_DisableWarningsPush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_DisableWarningsPush.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_Forward.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_Log.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_Macros.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_Memory.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_Move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_Move.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_Platform.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_PointerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_PointerUtil.h -------------------------------------------------------------------------------- /DebugPlugin/Foundation/PDB_Warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/Foundation/PDB_Warnings.h -------------------------------------------------------------------------------- /DebugPlugin/HookFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/HookFunction.cpp -------------------------------------------------------------------------------- /DebugPlugin/HookFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/HookFunction.h -------------------------------------------------------------------------------- /DebugPlugin/LoadSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/LoadSymbol.cpp -------------------------------------------------------------------------------- /DebugPlugin/LoadSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/LoadSymbol.h -------------------------------------------------------------------------------- /DebugPlugin/PDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_CoalescedMSFStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_CoalescedMSFStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_CoalescedMSFStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_CoalescedMSFStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_DBIStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_DBIStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_DBIStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_DBIStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_DBITypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_DBITypes.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_DBITypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_DBITypes.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_DirectMSFStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_DirectMSFStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_DirectMSFStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_DirectMSFStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_ErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_ErrorCodes.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_GlobalSymbolStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_GlobalSymbolStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_GlobalSymbolStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_GlobalSymbolStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_IPIStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_IPIStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_IPIStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_IPIStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_IPITypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_IPITypes.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_ImageSectionStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_ImageSectionStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_ImageSectionStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_ImageSectionStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_InfoStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_InfoStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_InfoStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_InfoStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_ModuleInfoStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_ModuleInfoStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_ModuleInfoStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_ModuleInfoStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_ModuleSymbolStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_ModuleSymbolStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_ModuleSymbolStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_ModuleSymbolStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_PCH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_PCH.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_PCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_PCH.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_PublicSymbolStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_PublicSymbolStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_PublicSymbolStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_PublicSymbolStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_RawFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_RawFile.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_RawFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_RawFile.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_SectionContributionStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_SectionContributionStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_SectionContributionStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_SectionContributionStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_SourceFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_SourceFileStream.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_SourceFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_SourceFileStream.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_Types.cpp -------------------------------------------------------------------------------- /DebugPlugin/PDB_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_Types.h -------------------------------------------------------------------------------- /DebugPlugin/PDB_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/PDB_Util.h -------------------------------------------------------------------------------- /DebugPlugin/VehFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/VehFunction.cpp -------------------------------------------------------------------------------- /DebugPlugin/VehFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/VehFunction.h -------------------------------------------------------------------------------- /DebugPlugin/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/common.cpp -------------------------------------------------------------------------------- /DebugPlugin/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/common.h -------------------------------------------------------------------------------- /DebugPlugin/debugStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/debugStruct.cpp -------------------------------------------------------------------------------- /DebugPlugin/debugStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/debugStruct.h -------------------------------------------------------------------------------- /DebugPlugin/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/dllmain.cpp -------------------------------------------------------------------------------- /DebugPlugin/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/driver.cpp -------------------------------------------------------------------------------- /DebugPlugin/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/driver.h -------------------------------------------------------------------------------- /DebugPlugin/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/gui.cpp -------------------------------------------------------------------------------- /DebugPlugin/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/gui.h -------------------------------------------------------------------------------- /DebugPlugin/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imconfig.h -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui.cpp -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui.h -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_internal.h -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_window.cpp -------------------------------------------------------------------------------- /DebugPlugin/imgui/imgui_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imgui_window.h -------------------------------------------------------------------------------- /DebugPlugin/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /DebugPlugin/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /DebugPlugin/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /DebugPlugin/injector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/injector.cpp -------------------------------------------------------------------------------- /DebugPlugin/injector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/injector.h -------------------------------------------------------------------------------- /DebugPlugin/intel_driver_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/intel_driver_resource.hpp -------------------------------------------------------------------------------- /DebugPlugin/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/log.cpp -------------------------------------------------------------------------------- /DebugPlugin/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/log.h -------------------------------------------------------------------------------- /DebugPlugin/minhook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/MinHook.h -------------------------------------------------------------------------------- /DebugPlugin/minhook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/buffer.c -------------------------------------------------------------------------------- /DebugPlugin/minhook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/buffer.h -------------------------------------------------------------------------------- /DebugPlugin/minhook/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/hde/hde32.c -------------------------------------------------------------------------------- /DebugPlugin/minhook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/hde/hde32.h -------------------------------------------------------------------------------- /DebugPlugin/minhook/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/hde/hde64.c -------------------------------------------------------------------------------- /DebugPlugin/minhook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/hde/hde64.h -------------------------------------------------------------------------------- /DebugPlugin/minhook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/hde/pstdint.h -------------------------------------------------------------------------------- /DebugPlugin/minhook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/hde/table32.h -------------------------------------------------------------------------------- /DebugPlugin/minhook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/hde/table64.h -------------------------------------------------------------------------------- /DebugPlugin/minhook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/hook.c -------------------------------------------------------------------------------- /DebugPlugin/minhook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/trampoline.c -------------------------------------------------------------------------------- /DebugPlugin/minhook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/minhook/trampoline.h -------------------------------------------------------------------------------- /DebugPlugin/nt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/nt.hpp -------------------------------------------------------------------------------- /DebugPlugin/win-url-download.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/DebugPlugin/win-url-download.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/README.md -------------------------------------------------------------------------------- /VtDebug/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/Function.cpp -------------------------------------------------------------------------------- /VtDebug/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/Function.h -------------------------------------------------------------------------------- /VtDebug/VtDebug.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/VtDebug.sln -------------------------------------------------------------------------------- /VtDebug/VtDebug.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/VtDebug.vcxproj -------------------------------------------------------------------------------- /VtDebug/VtDebug.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/VtDebug.vcxproj.filters -------------------------------------------------------------------------------- /VtDebug/VtDebug.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/VtDebug.vcxproj.user -------------------------------------------------------------------------------- /VtDebug/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/asm.h -------------------------------------------------------------------------------- /VtDebug/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/common.h -------------------------------------------------------------------------------- /VtDebug/ept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/ept.cpp -------------------------------------------------------------------------------- /VtDebug/ept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/ept.h -------------------------------------------------------------------------------- /VtDebug/event_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/event_notify.cpp -------------------------------------------------------------------------------- /VtDebug/event_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/event_notify.h -------------------------------------------------------------------------------- /VtDebug/exapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/exapi.h -------------------------------------------------------------------------------- /VtDebug/handleTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/handleTable.cpp -------------------------------------------------------------------------------- /VtDebug/handleTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/handleTable.h -------------------------------------------------------------------------------- /VtDebug/ia32_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/ia32_type.h -------------------------------------------------------------------------------- /VtDebug/ioDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/ioDevice.cpp -------------------------------------------------------------------------------- /VtDebug/ioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/ioDevice.h -------------------------------------------------------------------------------- /VtDebug/kernel_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/kernel_stl.cpp -------------------------------------------------------------------------------- /VtDebug/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/main.cpp -------------------------------------------------------------------------------- /VtDebug/stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/stl.cpp -------------------------------------------------------------------------------- /VtDebug/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/stl.h -------------------------------------------------------------------------------- /VtDebug/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/struct.h -------------------------------------------------------------------------------- /VtDebug/symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/symbol.cpp -------------------------------------------------------------------------------- /VtDebug/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/symbol.h -------------------------------------------------------------------------------- /VtDebug/util_page_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/util_page_constants.h -------------------------------------------------------------------------------- /VtDebug/utl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/utl.cpp -------------------------------------------------------------------------------- /VtDebug/utl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/utl.h -------------------------------------------------------------------------------- /VtDebug/vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/vm.cpp -------------------------------------------------------------------------------- /VtDebug/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/vm.h -------------------------------------------------------------------------------- /VtDebug/vmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/vmm.cpp -------------------------------------------------------------------------------- /VtDebug/vmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/vmm.h -------------------------------------------------------------------------------- /VtDebug/vtdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/vtdump.cpp -------------------------------------------------------------------------------- /VtDebug/vtdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/vtdump.h -------------------------------------------------------------------------------- /VtDebug/x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/VtDebug/x64.asm -------------------------------------------------------------------------------- /veh_debug/veh_debug.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/veh_debug/veh_debug.sln -------------------------------------------------------------------------------- /veh_debug/veh_debug/exports.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | EXPORTS 3 | 4 | InitializeVEH 5 | ConfigName 6 | -------------------------------------------------------------------------------- /veh_debug/veh_debug/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/veh_debug/veh_debug/main.cpp -------------------------------------------------------------------------------- /veh_debug/veh_debug/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/veh_debug/veh_debug/main.h -------------------------------------------------------------------------------- /veh_debug/veh_debug/ntex/ntex.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | EXPORTS 3 | KiUserExceptionDispatcher 4 | RtlRestoreContext -------------------------------------------------------------------------------- /veh_debug/veh_debug/ntex/ntex.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/veh_debug/veh_debug/ntex/ntex.exp -------------------------------------------------------------------------------- /veh_debug/veh_debug/ntex/ntex.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/veh_debug/veh_debug/ntex/ntex.lib -------------------------------------------------------------------------------- /veh_debug/veh_debug/veh_debug.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/veh_debug/veh_debug/veh_debug.vcxproj -------------------------------------------------------------------------------- /veh_debug/veh_debug/veh_debug.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/veh_debug/veh_debug/veh_debug.vcxproj.filters -------------------------------------------------------------------------------- /veh_debug/veh_debug/veh_debug.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/veh_debug/veh_debug/veh_debug.vcxproj.user -------------------------------------------------------------------------------- /x64dbgTest/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/cpp.hint -------------------------------------------------------------------------------- /x64dbgTest/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/dllmain.cpp -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/DeviceNameResolver/DeviceNameResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/DeviceNameResolver/DeviceNameResolver.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/DeviceNameResolver/DeviceNameResolver_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/DeviceNameResolver/DeviceNameResolver_x64.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/DeviceNameResolver/DeviceNameResolver_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/DeviceNameResolver/DeviceNameResolver_x64.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/DeviceNameResolver/DeviceNameResolver_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/DeviceNameResolver/DeviceNameResolver_x86.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/DeviceNameResolver/DeviceNameResolver_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/DeviceNameResolver/DeviceNameResolver_x86.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/TitanEngine/TitanEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/TitanEngine/TitanEngine.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/TitanEngine/TitanEngine_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/TitanEngine/TitanEngine_x64.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/TitanEngine/TitanEngine_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/TitanEngine/TitanEngine_x64.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/TitanEngine/TitanEngine_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/TitanEngine/TitanEngine_x86.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/TitanEngine/TitanEngine_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/TitanEngine/TitanEngine_x86.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/XEDParse/XEDParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/XEDParse/XEDParse.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/XEDParse/XEDParse_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/XEDParse/XEDParse_x64.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/XEDParse/XEDParse_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/XEDParse/XEDParse_x64.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/XEDParse/XEDParse_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/XEDParse/XEDParse_x86.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/XEDParse/XEDParse_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/XEDParse/XEDParse_x86.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_dbgfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_dbgfunctions.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_plugin_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_plugin_types.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_plugins.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_argument.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_assembler.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_bookmark.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_comment.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_debug.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_flag.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_function.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_gui.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_label.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_memory.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_misc.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_module.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_pattern.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_register.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_stack.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/_scriptapi_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/_scriptapi_symbol.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/bridgegraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/bridgegraph.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/bridgelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/bridgelist.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/bridgemain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/bridgemain.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/dbghelp/dbghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/dbghelp/dbghelp.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/dbghelp/dbghelp_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/dbghelp/dbghelp_x64.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/dbghelp/dbghelp_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/dbghelp/dbghelp_x64.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/dbghelp/dbghelp_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/dbghelp/dbghelp_x86.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/dbghelp/dbghelp_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/dbghelp/dbghelp_x86.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/jansson/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/jansson/jansson.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/jansson/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/jansson/jansson_config.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/jansson/jansson_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/jansson/jansson_x64.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/jansson/jansson_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/jansson/jansson_x64.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/jansson/jansson_x64dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/jansson/jansson_x64dbg.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/jansson/jansson_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/jansson/jansson_x86.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/jansson/jansson_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/jansson/jansson_x86.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/lz4/lz4.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/lz4/lz4_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/lz4/lz4_x64.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/lz4/lz4_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/lz4/lz4_x64.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/lz4/lz4_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/lz4/lz4_x86.a -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/lz4/lz4_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/lz4/lz4_x86.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/lz4/lz4file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/lz4/lz4file.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/lz4/lz4hc.h -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/x32bridge.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/x32bridge.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/x32dbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/x32dbg.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/x64bridge.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/x64bridge.lib -------------------------------------------------------------------------------- /x64dbgTest/pluginsdk/x64dbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/pluginsdk/x64dbg.lib -------------------------------------------------------------------------------- /x64dbgTest/x64dbgTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/x64dbgTest.vcxproj -------------------------------------------------------------------------------- /x64dbgTest/x64dbgTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/x64dbgTest.vcxproj.filters -------------------------------------------------------------------------------- /x64dbgTest/x64dbgTest.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilovecsad/DebugPlugin/HEAD/x64dbgTest/x64dbgTest.vcxproj.user --------------------------------------------------------------------------------