Type Alias esp_idf_sys::TaskHookFunction_t
source · pub type TaskHookFunction_t = Option<unsafe extern "C" fn(arg1: *mut c_void) -> BaseType_t>;
Expand description
Defines the prototype to which the application task hook function must conform.
Aliased Type§
enum TaskHookFunction_t {
None,
Some(unsafe extern "C" fn(_: *mut c_void) -> i32),
}