lwjgl2-arm64/src/native/macosx/tools.h

13 lines
240 B
C
Raw Normal View History

2003-10-01 11:02:52 +02:00
#ifndef TOOLS_H
#define TOOLS_H
#include <JavaVM/jni.h>
extern void throwException(JNIEnv* env, const char* msg);
2003-10-06 16:00:44 +02:00
extern bool initLock(JNIEnv* env);
extern void destroyLock(void);
extern void lock(void);
extern void unlock(void);
2003-10-01 11:02:52 +02:00
#endif