MCPcopy Create free account
hub / github.com/Kudaes/Dumpy / IMAGE_FILE_HEADER

Class IMAGE_FILE_HEADER

dumpy/data/src/lib.rs:122–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120#[derive(Copy, Clone, Default, PartialEq, Debug, Eq)]
121#[repr(C)]
122pub 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected