diff options
Diffstat (limited to 'src/native/alcbind.h')
-rw-r--r-- | src/native/alcbind.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/native/alcbind.h b/src/native/alcbind.h index f4a6212..911940b 100644 --- a/src/native/alcbind.h +++ b/src/native/alcbind.h @@ -43,8 +43,17 @@ extern "C" { * Method: openDeviceNative * Signature: (Ljava/lang/String;)I */ + /* JNIEXPORT jint JNICALL Java_net_java_games_joal_ALCImpl_openDeviceNative (JNIEnv *, jobject, jstring); +*/ +/* + * Class: net_java_games_joal_ALCImpl + * Method: openDeviceNative + * Signature: (Ljava/lang/String;)I + */ +JNIEXPORT jobject JNICALL Java_net_java_games_joal_ALCImpl_openDeviceNative + (JNIEnv *, jobject, jstring); /* * Class: net_java_games_joal_ALCImpl @@ -59,9 +68,12 @@ JNIEXPORT void JNICALL Java_net_java_games_joal_ALCImpl_closeDeviceNative * Method: createContextNative * Signature: (I[I)I */ +/* JNIEXPORT jint JNICALL Java_net_java_games_joal_ALCImpl_createContextNative (JNIEnv *, jobject, jint, jintArray); - +*/ +JNIEXPORT jobject JNICALL Java_net_java_games_joal_ALCImpl_createContextNative + (JNIEnv *, jobject, jint, jintArray); /* * Class: net_java_games_joal_ALCImpl * Method: makeContextCurrentNative |