From: Brian M. <ma...@us...> - 2002-08-19 13:54:21
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common In directory usw-pr-cvs1:/tmp/cvs-serv31134 Modified Files: org_lwjgl_openal_CoreAL.h Log Message: basic al support complete Index: org_lwjgl_openal_CoreAL.h CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/common/org_lwjgl_openal_CoreAL.h =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/org_lwjgl_openal_CoreAL.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- org_lwjgl_openal_CoreAL.h 19 Aug 2002 12:02:52 -0000 1.4 +++ org_lwjgl_openal_CoreAL.h 19 Aug 2002 13:54:14 -0000 1.5 @@ -1,3 +1,35 @@ +/* + * Copyright (c) 2002 Light Weight Java Game Library Project + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * * Neither the name of 'Light Weight Java Game Library' nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + /* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class org_lwjgl_openal_CoreAL */ @@ -178,18 +210,18 @@ /* * Class: org_lwjgl_openal_CoreAL * Method: getListeneri - * Signature: (I)I + * Signature: (II)V */ -JNIEXPORT jint JNICALL Java_org_lwjgl_openal_CoreAL_getListeneri - (JNIEnv *, jobject, jint); +JNIEXPORT void JNICALL Java_org_lwjgl_openal_CoreAL_getListeneri + (JNIEnv *, jobject, jint, jint); /* * Class: org_lwjgl_openal_CoreAL * Method: getListenerf - * Signature: (I)F + * Signature: (II)V */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_openal_CoreAL_getListenerf - (JNIEnv *, jobject, jint); +JNIEXPORT void JNICALL Java_org_lwjgl_openal_CoreAL_getListenerf + (JNIEnv *, jobject, jint, jint); /* * Class: org_lwjgl_openal_CoreAL @@ -266,26 +298,26 @@ /* * Class: org_lwjgl_openal_CoreAL * Method: getSourcei - * Signature: (II)I + * Signature: (III)V */ -JNIEXPORT jint JNICALL Java_org_lwjgl_openal_CoreAL_getSourcei - (JNIEnv *, jobject, jint, jint); +JNIEXPORT void JNICALL Java_org_lwjgl_openal_CoreAL_getSourcei + (JNIEnv *, jobject, jint, jint, jint); /* * Class: org_lwjgl_openal_CoreAL * Method: getSourcef - * Signature: (II)F + * Signature: (III)V */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_openal_CoreAL_getSourcef - (JNIEnv *, jobject, jint, jint); +JNIEXPORT void JNICALL Java_org_lwjgl_openal_CoreAL_getSourcef + (JNIEnv *, jobject, jint, jint, jint); /* * Class: org_lwjgl_openal_CoreAL * Method: getSource3f - * Signature: (III)V + * Signature: (IIIII)V */ JNIEXPORT void JNICALL Java_org_lwjgl_openal_CoreAL_getSource3f - (JNIEnv *, jobject, jint, jint, jint); + (JNIEnv *, jobject, jint, jint, jint, jint, jint); /* * Class: org_lwjgl_openal_CoreAL @@ -394,18 +426,18 @@ /* * Class: org_lwjgl_openal_CoreAL * Method: getBufferi - * Signature: (II)I + * Signature: (III)V */ -JNIEXPORT jint JNICALL Java_org_lwjgl_openal_CoreAL_getBufferi - (JNIEnv *, jobject, jint, jint); +JNIEXPORT void JNICALL Java_org_lwjgl_openal_CoreAL_getBufferi + (JNIEnv *, jobject, jint, jint, jint); /* * Class: org_lwjgl_openal_CoreAL * Method: getBufferf - * Signature: (II)F + * Signature: (III)V */ -JNIEXPORT jfloat JNICALL Java_org_lwjgl_openal_CoreAL_getBufferf - (JNIEnv *, jobject, jint, jint); +JNIEXPORT void JNICALL Java_org_lwjgl_openal_CoreAL_getBufferf + (JNIEnv *, jobject, jint, jint, jint); /* * Class: org_lwjgl_openal_CoreAL |