| 17 | |
| 18 | #[repr(C)] |
| 19 | struct PEB_LDR_DATA { |
| 20 | Length: u32, |
| 21 | Initialized: u8, |
| 22 | _padding: [u8; 3], |
| 23 | SsHandle: *mut c_void, |
| 24 | InLoadOrderModuleList: LIST_ENTRY, |
| 25 | InMemoryOrderModuleList: LIST_ENTRY, |
| 26 | InInitializationOrderLinks: LIST_ENTRY, |
| 27 | } |
| 28 | |
| 29 | #[repr(C)] |
| 30 | struct PEB { |
nothing calls this directly
no outgoing calls
no test coverage detected