|
From: Kevin G. <kev...@us...> - 2005-07-05 21:46:40
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16662/src/native/linux Modified Files: org_lwjgl_opengl_Display.c Log Message: Added empty implementation of the window icon setting code in preperation for adding the Linux version. Index: org_lwjgl_opengl_Display.c =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/linux/org_lwjgl_opengl_Display.c,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- org_lwjgl_opengl_Display.c 28 Jun 2005 15:19:32 -0000 1.29 +++ org_lwjgl_opengl_Display.c 5 Jul 2005 21:46:27 -0000 1.30 @@ -568,3 +568,11 @@ } jawt.Unlock(env); } + +JNIEXPORT jint JNICALL Java_org_lwjgl_opengl_LinuxDisplay_nSetWindowIcon + (JNIEnv *env, jclass clazz, jobject iconBuffer) +{ + + return 0; +} + |