| 133 | |
| 134 | #[repr(C)] |
| 135 | pub 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 | } |
| 148 | type ULONG_PTR = usize; |
| 149 | |
| 150 | pub const IMAGE_DOS_SIGNATURE: WORD = 0x5A4D; |
nothing calls this directly
no outgoing calls
no test coverage detected