I've been using WinDBG to view some structures for an attached C++ exe, e.g
dt blah::class::thingy
+0x000 Flags: Uint4B
+0x004 Whatever : Ptr64 something
But I've been given some older PDB files for an earlier version, and I'd like to view the same structures to compare changes, but I can't load the older PDBs as they don't match the current exe version.
So my question is there anyway to use the dt
command in WinDBG without first loading/attaching to an exe? I've seen the DIA SDK, but it seems over my head in terms of complexity for what I need.
I'm not sure if there is anyway to even load a PDB without first loading an exe?