FreeFunctionEx

Type Alias FreeFunctionEx 

Source
pub type FreeFunctionEx = Option<unsafe extern "system" fn(buffer: *const c_void, _: *mut LookasideList)>;
Expand description

The LookasideListFreeEx routine frees the storage for a lookaside-list entry when a client tries to insert the entry into a lookaside list that is full.

More info: https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/nc-wdm-free_function_ex

Aliased Type§

pub enum FreeFunctionEx {
    None,
    Some(unsafe extern "system" fn(*const c_void, *mut LookasideList)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "system" fn(*const c_void, *mut LookasideList))

Some value of type T.