panda_enable_callback_with_context

Function panda_enable_callback_with_context 

Source
pub unsafe extern "C" fn panda_enable_callback_with_context(
    plugin: *mut c_void,
    type_: panda_cb_type,
    cb: panda_cb_with_context,
    context: *mut c_void,
)
Expand description

panda_enable_callback_with_context() - Enable this callback for this plugin so that it can run (with context)/ @plugin: Pointer to plugin. @type: Type of callback, indicating when cb function will run. @cb: The callback function itself and other info. @context: Pointer to context.

Same as panda_enable_callback, but with context.