| 60 | |
| 61 | #[repr(C)] |
| 62 | pub struct LIST_ENTRY { |
| 63 | pub Flink: *mut LIST_ENTRY, |
| 64 | pub Blink: *mut LIST_ENTRY, |
| 65 | } |
| 66 | #[repr(C)] |
| 67 | pub struct RTL_USER_PROCESS_PARAMETERS { |
| 68 | pub MaximumLength: ULONG, |
nothing calls this directly
no outgoing calls
no test coverage detected