[][src]Function esp_idf_bindgen::esp_event_handler_unregister_with

pub unsafe extern "C" fn esp_event_handler_unregister_with(
    event_loop: esp_event_loop_handle_t,
    event_base: esp_event_base_t,
    event_id: i32,
    event_handler: esp_event_handler_t
) -> esp_err_t

@brief Unregister a handler from a specific event loop (legacy).

@note This function is obsolete and will be deprecated soon, please use esp_event_handler_instance_unregister_with() instead.

This function behaves in the same manner as esp_event_handler_unregister, except the additional specification of the event loop to unregister the handler with.

@param[in] event_loop the event loop with which to unregister this handler function @param[in] event_base the base of the event with which to unregister the handler @param[in] event_id the id of the event with which to unregister the handler @param[in] event_handler the handler to unregister

@return