AllocateFunctionEx

Type Alias AllocateFunctionEx 

Source
pub type AllocateFunctionEx = Option<unsafe extern "system" fn(pooltype: i32, numberofbytes: usize, tag: u32, lookaside: *mut LookasideList) -> *mut c_void>;
Expand description

The LookasideListAllocateEx routine allocates the storage for a new lookaside-list entry when a client requests an entry from a lookaside list that is empty.

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

Aliased Type§

pub enum AllocateFunctionEx {
    None,
    Some(unsafe extern "system" fn(i32, usize, u32, *mut LookasideList) -> *mut c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "system" fn(i32, usize, u32, *mut LookasideList) -> *mut c_void)

Some value of type T.