8 lines
178 B
Rust
8 lines
178 B
Rust
use jni::objects::*;
|
|
use jni::JNIEnv;
|
|
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn Java_me_hatter_RustJNI_init(_env: JNIEnv, _class: JClass) {
|
|
println!("rust-java-demo inited");
|
|
}
|