From 4a0ed67dc8b7a201ce464b296c01297337cab55e Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Tue, 20 Jun 2023 20:52:10 +0100 Subject: [PATCH] Add GetModule to JNINativeInterface_ GetModule was added to JNI version 9 --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 1330e77..2fec4b9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1391,6 +1391,7 @@ pub struct JNINativeInterface_ { Option jlong>, pub GetObjectRefType: Option jobjectRefType>, + pub GetModule: Option jobject>, } impl Clone for JNINativeInterface_ {