pub type obs_property_modified_t = Option<unsafe extern "C" fn(props: *mut obs_properties_t, property: *mut obs_property_t, settings: *mut obs_data_t) -> bool>;Expand description
Optional callback for when a property is modified. If the properties need to be refreshed due to changes to the property layout, return true, otherwise return false.
Aliased Type§
pub enum obs_property_modified_t {
None,
Some(unsafe extern "C" fn(*mut obs_properties, *mut obs_property, *mut obs_data) -> bool),
}Variants§
None
No value.
Some(unsafe extern "C" fn(*mut obs_properties, *mut obs_property, *mut obs_data) -> bool)
Some value of type T.