extern structstd.pdb.LineBlockFragmentHeader[src]

The following two variable length arrays appear immediately after the header. The structure definitions follow. LineNumberEntry Lines[NumLines]; ColumnNumberEntry Columns[NumLines];

Fields

name_index: u32

Offset of FileChecksum entry in File checksums buffer. The checksum entry then contains another offset into the string table of the actual name.

num_lines: u32
block_size: u32

code size of block, in bytes

Source Code

Source code
pub const LineBlockFragmentHeader = extern struct {
    /// Offset of FileChecksum entry in File
    /// checksums buffer.  The checksum entry then
    /// contains another offset into the string
    /// table of the actual name.
    name_index: u32,
    num_lines: u32,

    /// code size of block, in bytes
    block_size: u32,
}