fmod support

This commit is contained in:
Brian Matzon 2004-05-23 13:50:08 +00:00
parent 5878ba94fd
commit 9369626d38
2 changed files with 5 additions and 0 deletions

View File

@ -117,6 +117,10 @@ void throwOpenALException(JNIEnv * env, const char * err) {
throwGeneralException(env, "org/lwjgl/openal/OpenALException", err);
}
void throwFMODException(JNIEnv * env, const char * err) {
throwGeneralException(env, "org/lwjgl/fmod/FMODException", err);
}
void throwException(JNIEnv * env, const char * err) {
throwGeneralException(env, "org/lwjgl/LWJGLException", err);
}

View File

@ -62,6 +62,7 @@ extern unsigned char *getOutputList(event_queue_t *queue);
//extern int getEventBufferSize(event_queue_t *event_queue);
extern void throwException(JNIEnv *env, const char *msg);
extern void throwOpenALException(JNIEnv * env, const char * err);
extern void throwFMODException(JNIEnv * env, const char * err);
extern void setDebugEnabled(bool enable);
extern void printfDebug(const char *format, ...);
extern bool getBooleanProperty(JNIEnv *env, const char* propertyName);