| 32 | #[allow(non_snake_case, non_camel_case_types)] |
| 33 | #[repr(C)] |
| 34 | pub struct CProcess { |
| 35 | pub padding: [u8; 0x58], |
| 36 | pub pid: u32, |
| 37 | } |
| 38 | |
| 39 | pub fn locate_rpcss_oxid_list_head() -> Option<VirtualAddress> { |
| 40 | let rpcss_base = unsafe { LoadLibraryA(s!("rpcss.dll\0")).ok()? }; |
nothing calls this directly
no outgoing calls
no test coverage detected