Skip to main content

module_stop

Function module_stop 

Source
pub extern "C" fn module_stop() -> c_int
Expand description

Immediately stop and drop the current utterance

Your module implementation must export it’s own version of this function as:

#[unsafe(no_mangle)]
extern "C" fn module_stop() -> raw::c_int {
    // Implementation
}