| 224 | |
| 225 | #[repr(C)] |
| 226 | pub struct ImageFileHeader { |
| 227 | pub machine: u16, |
| 228 | pub number_of_sections: u16, |
| 229 | pub time_date_stamp: u32, |
| 230 | pub pointer_to_symbol_table: u32, |
| 231 | pub number_of_symbols: u32, |
| 232 | pub size_of_optional_header: u16, |
| 233 | pub characteristics: u16, |
| 234 | } |
| 235 | |
| 236 | #[repr(C)] |
| 237 | pub struct ImageDataDirectory { |
nothing calls this directly
no outgoing calls
no test coverage detected