pub type external_function_dispatcher_t = Option<unsafe extern "C" fn(arg1: u64, arg2: u64, arg3: u64, arg4: u64, arg5: u64, index: c_uint, cookie: *mut c_void) -> u64>;Expand description
@brief The type of an external helper dispatcher function.
Aliased Type§
pub enum external_function_dispatcher_t {
None,
Some(unsafe extern "C" fn(u64, u64, u64, u64, u64, u32, *mut c_void) -> u64),
}