jni: Add stop API stub.

This commit is contained in:
Josh Matthews 2018-08-02 17:03:15 -04:00
parent 2ceb8dcd22
commit 5b36f82c74
3 changed files with 18 additions and 0 deletions

View file

@ -138,6 +138,12 @@ pub extern "C" fn reload() {
call(|s| s.reload());
}
#[no_mangle]
pub extern "C" fn stop() {
debug!("stop");
call(|s| s.stop());
}
#[no_mangle]
pub extern "C" fn go_back() {
debug!("go_back");