| 65 | } |
| 66 | #[repr(C)] |
| 67 | pub struct RTL_USER_PROCESS_PARAMETERS { |
| 68 | pub MaximumLength: ULONG, |
| 69 | pub Length: ULONG, |
| 70 | pub Flags: ULONG, |
| 71 | pub DebugFlags: ULONG, |
| 72 | pub ConsoleHandle: HANDLE, |
| 73 | pub ConsoleFlags: ULONG, |
| 74 | pub StandardInput: HANDLE, |
| 75 | pub StandardOutput: HANDLE, |
| 76 | pub StandardError: HANDLE, |
| 77 | } |
| 78 | |
| 79 | type PULONG = *mut ULONG; |
| 80 | #[repr(C)] |
nothing calls this directly
no outgoing calls
no test coverage detected