Skip to content

PdbInfo

Description

PDB info-stream contents (stream #1). Used by callers that want to validate the PDB matches a particular PE’s CodeView record before trusting any names out of it.

Usage example (Cross-references)

Usage examples (Cross-references)
        u32 age;       // must match PE codeview.age
        u8  guid[16];  // must match PE codeview.guid
    } PdbInfo;
    
    ///
        u32          block_size;
        u32          num_streams;
        PdbInfo      info;
        PdbFunctions functions;
        // `dir_stream_blocks` borrows from `data` (it's an array of u32
Last updated on