| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/DIA SDK/Samples/DIA2Dump/ |
Upload File : |
#include "dia2.h" extern const wchar_t *g_szFilename; extern IDiaDataSource *g_pDiaDataSource; extern IDiaSession *g_pDiaSession; extern IDiaSymbol *g_pGlobalSymbol; extern DWORD g_dwMachineType; void PrintHelpOptions(); bool ParseArg(int , wchar_t *[]); void Cleanup(); bool LoadDataFromPdb(const wchar_t *, IDiaDataSource **, IDiaSession **, IDiaSymbol **); void DumpAllPdbInfo(IDiaSession *, IDiaSymbol *); bool DumpAllMods(IDiaSymbol *); bool DumpAllPublics(IDiaSymbol *); bool DumpCompiland(IDiaSymbol *, const wchar_t *); bool DumpAllSymbols(IDiaSymbol *); bool DumpAllGlobals(IDiaSymbol *); bool DumpAllTypes(IDiaSymbol *); bool DumpAllUDTs(IDiaSymbol *); bool DumpAllEnums(IDiaSymbol *); bool DumpAllTypedefs(IDiaSymbol *); bool DumpAllOEMs(IDiaSymbol *); bool DumpAllFiles(IDiaSession *, IDiaSymbol *); bool DumpAllLines(IDiaSession *, IDiaSymbol *); bool DumpAllLines(IDiaSession *, DWORD, DWORD); bool DumpAllSecContribs(IDiaSession *); bool DumpAllDebugStreams(IDiaSession *); bool DumpAllInjectedSources(IDiaSession *); bool DumpInjectedSource(IDiaSession *, const wchar_t *); bool DumpAllSourceFiles(IDiaSession *, IDiaSymbol *); bool DumpAllFPO(IDiaSession *); bool DumpFPO(IDiaSession *, DWORD); bool DumpFPO(IDiaSession *, IDiaSymbol *, const wchar_t *); bool DumpSymbolWithRVA(IDiaSession *, DWORD, const wchar_t *); bool DumpSymbolsWithRegEx(IDiaSymbol *, const wchar_t *, const wchar_t *); bool DumpSymbolWithChildren(IDiaSymbol *, const wchar_t *); bool DumpLines(IDiaSession *, DWORD); bool DumpLines(IDiaSession *, IDiaSymbol *, const wchar_t *); bool DumpType(IDiaSymbol *, const wchar_t *); bool DumpLinesForSourceFile(IDiaSession *, const wchar_t *, DWORD); bool DumpPublicSymbolsSorted(IDiaSession *, DWORD, DWORD, bool); bool DumpLabel(IDiaSession *, DWORD); bool DumpAnnotations(IDiaSession *, DWORD); bool DumpMapToSrc(IDiaSession *, DWORD); bool DumpMapFromSrc(IDiaSession *, DWORD); HRESULT GetTable(IDiaSession *, REFIID, void **); /////////////////////////////////////////////////////////////////// // Functions defined in regs.cpp const wchar_t *SzNameC7Reg(USHORT, DWORD); const wchar_t *SzNameC7Reg(USHORT);