1
2
3
4
5
use crate::internal_prelude::*;

pub type H5MM_allocate_t =
    Option<extern "C" fn(size: size_t, alloc_info: *mut c_void) -> *mut c_void>;
pub type H5MM_free_t = Option<extern "C" fn(mem: *mut c_void, free_info: *mut c_void)>;