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

#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, ...);

#endif