| 120 | #[derive(Copy, Clone, Default, PartialEq, Debug, Eq)] |
| 121 | #[repr(C)] |
| 122 | pub struct IMAGE_FILE_HEADER { |
| 123 | pub machine: u16, |
| 124 | pub number_of_sections: u16, |
| 125 | pub time_data_stamp: u32, |
| 126 | pub pointer_to_symbol_table: u32, |
| 127 | pub number_of_symbols: u32, |
| 128 | pub size_of_optional_header: u16, |
| 129 | pub characteristics: u16, |
| 130 | } |
| 131 | |
| 132 | #[derive(Copy, Clone,Default)] |
| 133 | #[repr(C)] // required to keep fields order, otherwise Rust may change that order randomly |
nothing calls this directly
no outgoing calls
no test coverage detected