extern struct SectionMapEntry [src]
Fields
flags: u16See the SectionMapEntryFlags enum below.
ovl: u16Logical overlay number
group: u16Group index into descriptor array.
frame: u16
section_name: u16Byte index of segment / group name in string table, or 0xFFFF.
class_name: u16Byte index of class in string table, or 0xFFFF.
offset: u32Byte offset of the logical segment within physical segment. If group is set in flags, this is the offset of the group.
section_length: u32Byte count of the segment or group.
Source
pub const SectionMapEntry = extern struct {
/// See the SectionMapEntryFlags enum below.
flags: u16,
/// Logical overlay number
ovl: u16,
/// Group index into descriptor array.
group: u16,
frame: u16,
/// Byte index of segment / group name in string table, or 0xFFFF.
section_name: u16,
/// Byte index of class in string table, or 0xFFFF.
class_name: u16,
/// Byte offset of the logical segment within physical segment. If group is set in flags, this is the offset of the group.
offset: u32,
/// Byte count of the segment or group.
section_length: u32,
}