extern structstd.pdb.LineFragmentHeader[src]

The following variable length array appears immediately after the header. The structure definition follows. LineBlockFragmentHeader Blocks[] Each LineBlockFragmentHeader as specified below.

Fields

reloc_offset: u32

Code offset of line contribution.

reloc_segment: u16

Code segment of line contribution.

flags: LineFlags
code_size: u32

Code size of this line contribution.

Source Code

Source code
pub const LineFragmentHeader = extern struct {
    /// Code offset of line contribution.
    reloc_offset: u32,

    /// Code segment of line contribution.
    reloc_segment: u16,
    flags: LineFlags,

    /// Code size of this line contribution.
    code_size: u32,
}