move extern "C"

only JNI functions need to be exported
This commit is contained in:
Brenton Bostick 2023-01-30 16:19:11 -05:00
parent 216ed8c8ea
commit 0733af5239
3 changed files with 4 additions and 20 deletions

View file

@ -40,10 +40,6 @@
// global static JNI Lookup Object
JniLookup lookup;
#ifdef __cplusplus
extern "C" {
#endif
namespace {
struct JniRef
{
@ -732,6 +728,10 @@ namespace {
}
}
#ifdef __cplusplus
extern "C" {
#endif
JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved)
{
lookup.setJavaVM(vm);