pub unsafe extern "C" fn uiSliderOnChanged(
    s: *mut uiSlider,
    f: Option<unsafe extern "C" fn(sender: *mut uiSlider, senderData: *mut c_void)>,
    data: *mut c_void
)
Expand description

Registers a callback for when the slider value is changed by the user.

@param s uiSlider instance. @param f Callback function.\n @p sender Back reference to the instance that triggered the callback.\n @p senderData User data registered with the sender instance. @param data User data to be passed to the callback.

@note The callback is not triggered when calling uiSliderSetValue(). @note Only one callback can be registered at a time. @memberof uiSlider