extern struct 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: u32Code offset of line contribution.
reloc_segment: u16Code segment of line contribution.
flags: LineFlags
code_size: u32Code size of this line contribution.
Source
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,
}