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

@ -30,10 +30,6 @@
extern JniLookup lookup;
#ifdef __cplusplus
extern "C" {
#endif
jobject createResultObject(JNIEnv *env, ZT_ResultCode code)
{
jclass resultClass = NULL;
@ -1028,7 +1024,3 @@ jobject newVirtualNetworkDNS(JNIEnv *env, const ZT_VirtualNetworkDNS &dns)
}
return NULL;
}
#ifdef __cplusplus
}
#endif