pub unsafe extern "C" fn obs_properties_remove_by_name(
props: *mut obs_properties_t,
property: *const c_char,
)
Expand description
Remove a property from a properties list.
Removes a property from a properties list. Only valid in either get_properties or modified_callback(2). modified_callback(2) must return true so that all UI properties are rebuilt and returning false is undefined behavior.
@param props Properties to remove from. @param property Name of the property to remove.