| 79 | type PULONG = *mut ULONG; |
| 80 | #[repr(C)] |
| 81 | pub struct IO_STATUS_BLOCK { |
| 82 | _1: IO_STATUS_BLOCK_u, |
| 83 | _2: PULONG, |
| 84 | } |
| 85 | /// A specialized `Result` type for NT operations. |
| 86 | pub type Result<T> = ::core::result::Result<T, Status>; |
| 87 |
nothing calls this directly
no outgoing calls
no test coverage detected