| 28 | |
| 29 | #[repr(C)] |
| 30 | struct PEB { |
| 31 | Reserved1: [u8; 2], |
| 32 | BeingDebugged: u8, |
| 33 | Reserved2: [u8; 1], |
| 34 | Reserved3: [*mut c_void; 2], |
| 35 | Ldr: *mut PEB_LDR_DATA, |
| 36 | } |
| 37 | |
| 38 | #[repr(C)] |
| 39 | struct LDR_DATA_TABLE_ENTRY { |
nothing calls this directly
no outgoing calls
no test coverage detected