pub fn parse_section_table(
binary: &[u8],
offset: usize,
number_of_sections: u16,
) -> Vec<SectionHeader>
Expand description
Parse the section table from a byte array at a given offset.
number_of_sections
should be equal to number of sections
defined in the COFF header.