MCPcopy Create free account
hub / github.com/b1tg/rust-windows-shellcode / IMAGE_EXPORT_DIRECTORY

Class IMAGE_EXPORT_DIRECTORY

shellcode/src/binds.rs:135–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

133
134#[repr(C)]
135pub struct IMAGE_EXPORT_DIRECTORY {
136 pub Characteristics: DWORD,
137 pub TimeDateStamp: DWORD,
138 pub MajorVersion: WORD,
139 pub MinorVersion: WORD,
140 pub Name: DWORD,
141 pub Base: DWORD,
142 pub NumberOfFunctions: DWORD,
143 pub NumberOfNames: DWORD,
144 pub AddressOfFunctions: DWORD,
145 pub AddressOfNames: DWORD,
146 pub AddressOfNameOrdinals: DWORD,
147}
148type ULONG_PTR = usize;
149
150pub const IMAGE_DOS_SIGNATURE: WORD = 0x5A4D;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected