Type Alias KSERVICE_ROUTINE

pub type KSERVICE_ROUTINE = Option<unsafe extern "system" fn(interrupt: *const isize, servicecontext: *const c_void) -> bool>;

Aliased Type§

pub enum KSERVICE_ROUTINE {
    None,
    Some(unsafe extern "system" fn(*const isize, *const c_void) -> bool),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "system" fn(*const isize, *const c_void) -> bool)

Some value of type T.