Struct winapi::dbghelp::LOADED_IMAGE [] [src]

pub struct LOADED_IMAGE {
    pub ModuleName: PSTR,
    pub hFile: HANDLE,
    pub MappedAddress: PUCHAR,
    pub FileHeader: PIMAGE_NT_HEADERS64,
    pub LastRvaSection: PIMAGE_SECTION_HEADER,
    pub NumberOfSections: ULONG,
    pub Sections: PIMAGE_SECTION_HEADER,
    pub Characteristics: ULONG,
    pub fSystemImage: BOOLEAN,
    pub fDOSImage: BOOLEAN,
    pub fReadOnly: BOOLEAN,
    pub Version: UCHAR,
    pub Links: LIST_ENTRY,
    pub SizeOfImage: ULONG,
}

Fields

ModuleName
hFile
MappedAddress
FileHeader
LastRvaSection
NumberOfSections
Sections
Characteristics
fSystemImage
fDOSImage
fReadOnly
Version
SizeOfImage

Trait Implementations

Derived Implementations

impl Debug for LOADED_IMAGE

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Copy for LOADED_IMAGE

impl Clone for LOADED_IMAGE

fn clone(&self) -> LOADED_IMAGE

fn clone_from(&mut self, source: &Self)