| 10 | pub type LPSTR = *mut i8; |
| 11 | #[repr(C)] |
| 12 | pub struct PEB { |
| 13 | pub InheritedAddressSpace: BOOLEAN, |
| 14 | pub ReadImageFileExecOptions: BOOLEAN, |
| 15 | pub BeingDebugged: BOOLEAN, |
| 16 | pub BitField: BOOLEAN, |
| 17 | pub Mutant: HANDLE, |
| 18 | pub ImageBaseAddress: PVOID, |
| 19 | pub Ldr: *mut PEB_LDR_DATA, |
| 20 | pub ProcessParameters: *mut RTL_USER_PROCESS_PARAMETERS, |
| 21 | } |
| 22 | pub type LPCSTR = *const i8; |
| 23 | #[repr(C)] |
| 24 | pub struct PEB_LDR_DATA { |
nothing calls this directly
no outgoing calls
no test coverage detected