├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── VERSION.txt ├── img ├── debugui.png ├── example.png ├── names.png └── windbg.png ├── ntkrnlpa.pdb ├── pdbdump_bochs ├── .vs │ └── pdbdump_bochs │ │ └── v16 │ │ ├── .suo │ │ ├── Browse.VC.db │ │ └── ipch │ │ └── AutoPCH │ │ ├── 13b41ac8131a51a │ │ └── PDBDUMP_BOCHS.ipch │ │ └── b89095d6f9fdb289 │ │ └── PDBDUMP_BOCHS.ipch ├── pdbdump_bochs.c ├── pdbdump_bochs.sdf ├── pdbdump_bochs.sln ├── pdbdump_bochs.v12.suo ├── pdbdump_bochs.vcxproj ├── pdbdump_bochs.vcxproj.filters └── pdbdump_bochs.vcxproj.user ├── sym.txt ├── sym_64.txt ├── x32 ├── Wudfext.dll ├── acpikd.dll ├── adplusext.dll ├── dbgeng.dll ├── dbgeng.lib ├── dbghelp.dll ├── dbghelp.lib ├── decem.dll ├── engextcpp.lib ├── ext.dll ├── exts.dll ├── fltkd.dll ├── gdikdx.dll ├── kdex2x86.dll ├── kdexts.dll ├── kdextx86.dll ├── kext.dll ├── ks.dll ├── logexts.dll ├── minipkd.dll ├── ndiskd.dll ├── ntsdexts.dll ├── rpcexts.dll ├── scsikd.dll ├── sos.dll ├── srcsrv.dll ├── symbolcheck.dll ├── symproxy.dll ├── symsrv.dll ├── traceprt.dll ├── uext.dll ├── userexts.dll ├── userkdx.dll ├── vdmexts.dll ├── wdfkd.dll ├── wmitrace.dll ├── wow64exts.dll └── x32_pdbdump_bochs.exe └── x64 ├── SymbolCheck.dll ├── acpikd.dll ├── adplusext.dll ├── dbgeng.dll ├── dbgeng.lib ├── dbghelp.dll ├── dbghelp.lib ├── decem.dll ├── engextcpp.lib ├── ext.dll ├── exts.dll ├── fltkd.dll ├── kdexts.dll ├── kdhvcom.dll ├── kext.dll ├── ks.dll ├── logexts.dll ├── minipkd.dll ├── ndiskd.dll ├── ntsdexts.dll ├── rpcexts.dll ├── scsikd.dll ├── srcsrv.dll ├── symproxy.dll ├── symsrv.dll ├── traceprt.dll ├── uext.dll ├── wdfkd.dll ├── wmitrace.dll ├── wow64exts.dll ├── wudfext.dll └── x64_pdbdump_bochs.exe /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | dev-v2 -------------------------------------------------------------------------------- /img/debugui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/img/debugui.png -------------------------------------------------------------------------------- /img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/img/example.png -------------------------------------------------------------------------------- /img/names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/img/names.png -------------------------------------------------------------------------------- /img/windbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/img/windbg.png -------------------------------------------------------------------------------- /ntkrnlpa.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/ntkrnlpa.pdb -------------------------------------------------------------------------------- /pdbdump_bochs/.vs/pdbdump_bochs/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/.vs/pdbdump_bochs/v16/.suo -------------------------------------------------------------------------------- /pdbdump_bochs/.vs/pdbdump_bochs/v16/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/.vs/pdbdump_bochs/v16/Browse.VC.db -------------------------------------------------------------------------------- /pdbdump_bochs/.vs/pdbdump_bochs/v16/ipch/AutoPCH/13b41ac8131a51a/PDBDUMP_BOCHS.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/.vs/pdbdump_bochs/v16/ipch/AutoPCH/13b41ac8131a51a/PDBDUMP_BOCHS.ipch -------------------------------------------------------------------------------- /pdbdump_bochs/.vs/pdbdump_bochs/v16/ipch/AutoPCH/b89095d6f9fdb289/PDBDUMP_BOCHS.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/.vs/pdbdump_bochs/v16/ipch/AutoPCH/b89095d6f9fdb289/PDBDUMP_BOCHS.ipch -------------------------------------------------------------------------------- /pdbdump_bochs/pdbdump_bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/pdbdump_bochs.c -------------------------------------------------------------------------------- /pdbdump_bochs/pdbdump_bochs.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/pdbdump_bochs.sdf -------------------------------------------------------------------------------- /pdbdump_bochs/pdbdump_bochs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/pdbdump_bochs.sln -------------------------------------------------------------------------------- /pdbdump_bochs/pdbdump_bochs.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/pdbdump_bochs.v12.suo -------------------------------------------------------------------------------- /pdbdump_bochs/pdbdump_bochs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/pdbdump_bochs.vcxproj -------------------------------------------------------------------------------- /pdbdump_bochs/pdbdump_bochs.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/pdbdump_bochs.vcxproj.filters -------------------------------------------------------------------------------- /pdbdump_bochs/pdbdump_bochs.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/pdbdump_bochs/pdbdump_bochs.vcxproj.user -------------------------------------------------------------------------------- /sym.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/sym.txt -------------------------------------------------------------------------------- /sym_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/sym_64.txt -------------------------------------------------------------------------------- /x32/Wudfext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/Wudfext.dll -------------------------------------------------------------------------------- /x32/acpikd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/acpikd.dll -------------------------------------------------------------------------------- /x32/adplusext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/adplusext.dll -------------------------------------------------------------------------------- /x32/dbgeng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/dbgeng.dll -------------------------------------------------------------------------------- /x32/dbgeng.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/dbgeng.lib -------------------------------------------------------------------------------- /x32/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/dbghelp.dll -------------------------------------------------------------------------------- /x32/dbghelp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/dbghelp.lib -------------------------------------------------------------------------------- /x32/decem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/decem.dll -------------------------------------------------------------------------------- /x32/engextcpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/engextcpp.lib -------------------------------------------------------------------------------- /x32/ext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/ext.dll -------------------------------------------------------------------------------- /x32/exts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/exts.dll -------------------------------------------------------------------------------- /x32/fltkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/fltkd.dll -------------------------------------------------------------------------------- /x32/gdikdx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/gdikdx.dll -------------------------------------------------------------------------------- /x32/kdex2x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/kdex2x86.dll -------------------------------------------------------------------------------- /x32/kdexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/kdexts.dll -------------------------------------------------------------------------------- /x32/kdextx86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/kdextx86.dll -------------------------------------------------------------------------------- /x32/kext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/kext.dll -------------------------------------------------------------------------------- /x32/ks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/ks.dll -------------------------------------------------------------------------------- /x32/logexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/logexts.dll -------------------------------------------------------------------------------- /x32/minipkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/minipkd.dll -------------------------------------------------------------------------------- /x32/ndiskd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/ndiskd.dll -------------------------------------------------------------------------------- /x32/ntsdexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/ntsdexts.dll -------------------------------------------------------------------------------- /x32/rpcexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/rpcexts.dll -------------------------------------------------------------------------------- /x32/scsikd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/scsikd.dll -------------------------------------------------------------------------------- /x32/sos.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/sos.dll -------------------------------------------------------------------------------- /x32/srcsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/srcsrv.dll -------------------------------------------------------------------------------- /x32/symbolcheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/symbolcheck.dll -------------------------------------------------------------------------------- /x32/symproxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/symproxy.dll -------------------------------------------------------------------------------- /x32/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/symsrv.dll -------------------------------------------------------------------------------- /x32/traceprt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/traceprt.dll -------------------------------------------------------------------------------- /x32/uext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/uext.dll -------------------------------------------------------------------------------- /x32/userexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/userexts.dll -------------------------------------------------------------------------------- /x32/userkdx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/userkdx.dll -------------------------------------------------------------------------------- /x32/vdmexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/vdmexts.dll -------------------------------------------------------------------------------- /x32/wdfkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/wdfkd.dll -------------------------------------------------------------------------------- /x32/wmitrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/wmitrace.dll -------------------------------------------------------------------------------- /x32/wow64exts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/wow64exts.dll -------------------------------------------------------------------------------- /x32/x32_pdbdump_bochs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x32/x32_pdbdump_bochs.exe -------------------------------------------------------------------------------- /x64/SymbolCheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/SymbolCheck.dll -------------------------------------------------------------------------------- /x64/acpikd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/acpikd.dll -------------------------------------------------------------------------------- /x64/adplusext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/adplusext.dll -------------------------------------------------------------------------------- /x64/dbgeng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/dbgeng.dll -------------------------------------------------------------------------------- /x64/dbgeng.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/dbgeng.lib -------------------------------------------------------------------------------- /x64/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/dbghelp.dll -------------------------------------------------------------------------------- /x64/dbghelp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/dbghelp.lib -------------------------------------------------------------------------------- /x64/decem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/decem.dll -------------------------------------------------------------------------------- /x64/engextcpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/engextcpp.lib -------------------------------------------------------------------------------- /x64/ext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/ext.dll -------------------------------------------------------------------------------- /x64/exts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/exts.dll -------------------------------------------------------------------------------- /x64/fltkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/fltkd.dll -------------------------------------------------------------------------------- /x64/kdexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/kdexts.dll -------------------------------------------------------------------------------- /x64/kdhvcom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/kdhvcom.dll -------------------------------------------------------------------------------- /x64/kext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/kext.dll -------------------------------------------------------------------------------- /x64/ks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/ks.dll -------------------------------------------------------------------------------- /x64/logexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/logexts.dll -------------------------------------------------------------------------------- /x64/minipkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/minipkd.dll -------------------------------------------------------------------------------- /x64/ndiskd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/ndiskd.dll -------------------------------------------------------------------------------- /x64/ntsdexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/ntsdexts.dll -------------------------------------------------------------------------------- /x64/rpcexts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/rpcexts.dll -------------------------------------------------------------------------------- /x64/scsikd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/scsikd.dll -------------------------------------------------------------------------------- /x64/srcsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/srcsrv.dll -------------------------------------------------------------------------------- /x64/symproxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/symproxy.dll -------------------------------------------------------------------------------- /x64/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/symsrv.dll -------------------------------------------------------------------------------- /x64/traceprt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/traceprt.dll -------------------------------------------------------------------------------- /x64/uext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/uext.dll -------------------------------------------------------------------------------- /x64/wdfkd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/wdfkd.dll -------------------------------------------------------------------------------- /x64/wmitrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/wmitrace.dll -------------------------------------------------------------------------------- /x64/wow64exts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/wow64exts.dll -------------------------------------------------------------------------------- /x64/wudfext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/wudfext.dll -------------------------------------------------------------------------------- /x64/x64_pdbdump_bochs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/pdbdump_bochs/HEAD/x64/x64_pdbdump_bochs.exe --------------------------------------------------------------------------------