Skip to main content

module_pause

Function module_pause 

Source
pub extern "C" fn module_pause() -> usize
Expand description

Stop and drop the current utterance, preferably after reaching and reporting the next __spd_ index mark

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

#[unsafe(no_mangle)]
extern "C" fn module_pause() -> usize {
    // Implementation
}