lwjgl/src/native/macosx/tools.h

13 lines
240 B
C
Raw Normal View History

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