IO_COMPLETION_ROUTINE

Type Alias IO_COMPLETION_ROUTINE 

pub type IO_COMPLETION_ROUTINE = Option<unsafe extern "system" fn(deviceobject: *const DEVICE_OBJECT, irp: *const IRP, context: *const c_void) -> NTSTATUS>;

Aliased Type§

pub enum IO_COMPLETION_ROUTINE {
    None,
    Some(unsafe extern "system" fn(*const DEVICE_OBJECT, *const IRP, *const c_void) -> NTSTATUS),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "system" fn(*const DEVICE_OBJECT, *const IRP, *const c_void) -> NTSTATUS)

Some value of type T.