extern structstd.pdb.ProcSym[src]

Fields

parent: u32
end: u32
next: u32
code_size: u32
dbg_start: u32
dbg_end: u32
function_type: TypeIndex
code_offset: u32
segment: u16
flags: ProcSymFlags
name: [1]u8

Source Code

Source code
pub const ProcSym = extern struct {
    parent: u32,
    end: u32,
    next: u32,
    code_size: u32,
    dbg_start: u32,
    dbg_end: u32,
    function_type: TypeIndex,
    code_offset: u32,
    segment: u16,
    flags: ProcSymFlags,
    name: [1]u8, // null-terminated
}