Add function to this component.
(&self, func: &Function)
| 94 | |
| 95 | /// Add function to this component. |
| 96 | pub fn add_function(&self, func: &Function) -> bool { |
| 97 | unsafe { BNComponentAddFunctionReference(self.handle.as_ptr(), func.handle) } |
| 98 | } |
| 99 | |
| 100 | /// Check whether this component contains a function. |
| 101 | pub fn contains_function(&self, func: &Function) -> bool { |
no outgoing calls