pub type BerMemoryFunctions = lber_memory_fns;
Aliased Type§
#[repr(C)]pub struct BerMemoryFunctions {
pub bmf_malloc: Option<unsafe extern "C" fn(u64, *mut c_void) -> *mut c_void>,
pub bmf_calloc: Option<unsafe extern "C" fn(u64, u64, *mut c_void) -> *mut c_void>,
pub bmf_realloc: Option<unsafe extern "C" fn(*mut c_void, u64, *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(u64, *mut c_void) -> *mut c_void>
§bmf_calloc: Option<unsafe extern "C" fn(u64, u64, *mut c_void) -> *mut c_void>
§bmf_realloc: Option<unsafe extern "C" fn(*mut c_void, u64, *mut c_void) -> *mut c_void>
§bmf_free: Option<unsafe extern "C" fn(*mut c_void, *mut c_void)>