extern structstd.pdb.SectionContribEntry[src]

Fields

section: u16

COFF Section index, 1-based

padding1: [2]u8
offset: u32
size: u32
characteristics: u32
module_index: u16
padding2: [2]u8
data_crc: u32
reloc_crc: u32

Source Code

Source code
pub const SectionContribEntry = extern struct {
    /// COFF Section index, 1-based
    section: u16,
    padding1: [2]u8,
    offset: u32,
    size: u32,
    characteristics: u32,
    module_index: u16,
    padding2: [2]u8,
    data_crc: u32,
    reloc_crc: u32,
}