extern structstd.macho.unwind_info_section_header[src]

Fields

version: u32 = UNWIND_SECTION_VERSION

UNWIND_SECTION_VERSION

commonEncodingsArraySectionOffset: u32
commonEncodingsArrayCount: u32
personalityArraySectionOffset: u32
personalityArrayCount: u32
indexSectionOffset: u32
indexCount: u32

Source Code

Source code
pub const unwind_info_section_header = extern struct {
    /// UNWIND_SECTION_VERSION
    version: u32 = UNWIND_SECTION_VERSION,
    commonEncodingsArraySectionOffset: u32,
    commonEncodingsArrayCount: u32,
    personalityArraySectionOffset: u32,
    personalityArrayCount: u32,
    indexSectionOffset: u32,
    indexCount: u32,
    // compact_unwind_encoding_t[]
    // uint32_t personalities[]
    // unwind_info_section_header_index_entry[]
    // unwind_info_section_header_lsda_index_entry[]
}