mirror of
https://github.com/corda/corda.git
synced 2025-03-04 21:18:09 +00:00
25 lines
281 B
C++
25 lines
281 B
C++
struct JavaVM;
|
|
|
|
extern "C" int JNI_OnLoad(JavaVM*, void*)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
struct _JNIEnv;
|
|
|
|
struct JniConstants {
|
|
static void init(_JNIEnv* env);
|
|
};
|
|
|
|
void JniConstants::init(_JNIEnv*)
|
|
{
|
|
// ignore
|
|
}
|
|
|
|
struct _JavaVM;
|
|
|
|
int libconscrypt_JNI_OnLoad(_JavaVM*, void*)
|
|
{
|
|
return 0;
|
|
}
|