blob: 91fceb310a23df3231f4a05d63a00450449107d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef NEWT_COMMON_H
#define NEWT_COMMON_H 1
#include <jni.h>
#include <stdlib.h>
void NewtCommon_init(JNIEnv *env);
jchar* NewtCommon_GetNullTerminatedStringChars(JNIEnv* env, jstring str);
void NewtCommon_FatalError(JNIEnv *env, const char* msg, ...);
void NewtCommon_throwNewRuntimeException(JNIEnv *env, const char* msg, ...);
JNIEnv* NewtCommon_GetJNIEnv (JavaVM * jvmHandle, int jvmVersion, int * shallBeDetached);
#endif
|