Skip to main content

afia_component/
output_change.rs

1use crate::ComponentImports;
2
3impl ComponentImports {
4    /// Indicate that one of a component's outputs may have changed.
5    pub fn output_may_have_changed(&self, output_id: i32) {
6        unsafe {
7            afia_component_sys::output_may_have_changed(self.component_imports_ptr, output_id)
8        }
9    }
10}