pub type PeFile32<'data, R = &'data [u8]> = PeFile<'data, ImageNtHeaders32, R>;Expand description
A PE32 (32-bit) image file.
This is a file that starts with pe::ImageNtHeaders32, and corresponds
to crate::FileKind::Pe32.
Aliased Type§
pub struct PeFile32<'data, R = &'data [u8]> {
    pub(super) dos_header: &'data ImageDosHeader,
    pub(super) nt_headers: &'data ImageNtHeaders32,
    pub(super) data_directories: DataDirectories<'data>,
    pub(super) common: CoffCommon<'data, R>,
    pub(super) data: R,
}Fields§
§dos_header: &'data ImageDosHeader§nt_headers: &'data ImageNtHeaders32§data_directories: DataDirectories<'data>§common: CoffCommon<'data, R>§data: R