aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt/native/NewtCommon.h
blob: 00ce0b643f563e921662164d06730b1b7fc43416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#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_throwNewRuntimeException(JNIEnv *env, const char* msg, ...);

#endif