(pvm: *mut *mut JavaVM, penv: *mut *mut c_void, args: *mut c_void)
| 33 | |
| 34 | #[cfg(all(not(feature = "no-runtime-libloading"), not(target_os = "android")))] |
| 35 | pub fn create_java_vm(pvm: *mut *mut JavaVM, penv: *mut *mut c_void, args: *mut c_void) -> jint { |
| 36 | generic::create_java_vm(pvm, penv, args) |
| 37 | } |
| 38 | |
| 39 | #[cfg(all(not(feature = "no-runtime-libloading"), not(target_os = "android")))] |
| 40 | pub fn find_class(env: *mut JNIEnv, classname: &str) -> errors::Result<jclass> { |