Type Alias BerMemoryFunctions

Source
pub type BerMemoryFunctions = lber_memory_fns;

Aliased Type§

#[repr(C)]
pub struct BerMemoryFunctions { pub bmf_malloc: Option<unsafe extern "C" fn(u32, *mut c_void) -> *mut c_void>, pub bmf_calloc: Option<unsafe extern "C" fn(u32, u32, *mut c_void) -> *mut c_void>, pub bmf_realloc: Option<unsafe extern "C" fn(*mut c_void, u32, *mut c_void) -> *mut c_void>, pub bmf_free: Option<unsafe extern "C" fn(*mut c_void, *mut c_void)>, }

Fields§

§bmf_malloc: Option<unsafe extern "C" fn(u32, *mut c_void) -> *mut c_void>§bmf_calloc: Option<unsafe extern "C" fn(u32, u32, *mut c_void) -> *mut c_void>§bmf_realloc: Option<unsafe extern "C" fn(*mut c_void, u32, *mut c_void) -> *mut c_void>§bmf_free: Option<unsafe extern "C" fn(*mut c_void, *mut c_void)>