|
From: Elias N. <eli...@us...> - 2003-09-30 10:52:10
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common In directory sc8-pr-cvs1:/tmp/cvs-serv26555/src/native/common Modified Files: org_lwjgl_input_Controller.h org_lwjgl_input_Keyboard.h org_lwjgl_input_Mouse.h Log Message: boolean results -> Exceptions Index: org_lwjgl_input_Controller.h CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/common/org_lwjgl_input_Controller.h =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/org_lwjgl_input_Controller.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- org_lwjgl_input_Controller.h 3 Jan 2003 18:47:42 -0000 1.1 +++ org_lwjgl_input_Controller.h 30 Sep 2003 10:52:05 -0000 1.2 @@ -11,9 +11,13 @@ /* Inaccessible static: created */ /* Inaccessible static: buttons */ /* Inaccessible static: x */ +/* Inaccessible static: rx */ /* Inaccessible static: y */ +/* Inaccessible static: ry */ /* Inaccessible static: z */ +/* Inaccessible static: rz */ /* Inaccessible static: pov */ +/* Inaccessible static: slider */ #undef org_lwjgl_input_Controller_POV_CENTER #define org_lwjgl_input_Controller_POV_CENTER -1L #undef org_lwjgl_input_Controller_POV_NORTH @@ -25,8 +29,17 @@ #undef org_lwjgl_input_Controller_POV_WEST #define org_lwjgl_input_Controller_POV_WEST 9000L /* Inaccessible static: buttonCount */ +/* Inaccessible static: hasXAxis */ +/* Inaccessible static: hasRXAxis */ +/* Inaccessible static: hasYAxis */ +/* Inaccessible static: hasRYAxis */ /* Inaccessible static: hasZAxis */ +/* Inaccessible static: hasRZAxis */ /* Inaccessible static: hasPOV */ +/* Inaccessible static: hasSlider */ +/* Inaccessible static: buttonName */ +/* Inaccessible static: buttonMap */ +/* Inaccessible static: initialized */ /* Inaccessible static: class_00024org_00024lwjgl_00024input_00024Controller */ /* * Class: org_lwjgl_input_Controller @@ -39,9 +52,9 @@ /* * Class: org_lwjgl_input_Controller * Method: nCreate - * Signature: ()Z + * Signature: ()V */ -JNIEXPORT jboolean JNICALL Java_org_lwjgl_input_Controller_nCreate +JNIEXPORT void JNICALL Java_org_lwjgl_input_Controller_nCreate (JNIEnv *, jclass); /* Index: org_lwjgl_input_Keyboard.h CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/common/org_lwjgl_input_Keyboard.h =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/org_lwjgl_input_Keyboard.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- org_lwjgl_input_Keyboard.h 23 Aug 2003 09:45:22 -0000 1.6 +++ org_lwjgl_input_Keyboard.h 30 Sep 2003 10:52:05 -0000 1.7 @@ -276,8 +276,8 @@ /* Inaccessible static: character */ /* Inaccessible static: key */ /* Inaccessible static: state */ -/* Inaccessible static: class_000240 */ -/* Inaccessible static: class_000241 */ +/* Inaccessible static: initialized */ +/* Inaccessible static: class_00024org_00024lwjgl_00024input_00024Keyboard */ /* * Class: org_lwjgl_input_Keyboard * Method: initIDs @@ -289,9 +289,9 @@ /* * Class: org_lwjgl_input_Keyboard * Method: nCreate - * Signature: ()Z + * Signature: ()V */ -JNIEXPORT jboolean JNICALL Java_org_lwjgl_input_Keyboard_nCreate +JNIEXPORT void JNICALL Java_org_lwjgl_input_Keyboard_nCreate (JNIEnv *, jclass); /* @@ -321,9 +321,9 @@ /* * Class: org_lwjgl_input_Keyboard * Method: nEnableTranslation - * Signature: ()Z + * Signature: ()V */ -JNIEXPORT jboolean JNICALL Java_org_lwjgl_input_Keyboard_nEnableTranslation +JNIEXPORT void JNICALL Java_org_lwjgl_input_Keyboard_nEnableTranslation (JNIEnv *, jclass); /* Index: org_lwjgl_input_Mouse.h CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/native/common/org_lwjgl_input_Mouse.h =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/org_lwjgl_input_Mouse.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- org_lwjgl_input_Mouse.h 29 Aug 2003 08:00:44 -0000 1.6 +++ org_lwjgl_input_Mouse.h 30 Sep 2003 10:52:05 -0000 1.7 @@ -24,6 +24,7 @@ /* Inaccessible static: currentCursor */ /* Inaccessible static: buttonName */ /* Inaccessible static: buttonMap */ +/* Inaccessible static: initialized */ /* Inaccessible static: class_00024org_00024lwjgl_00024input_00024Mouse */ /* * Class: org_lwjgl_input_Mouse @@ -68,9 +69,9 @@ /* * Class: org_lwjgl_input_Mouse * Method: nCreate - * Signature: ()Z + * Signature: ()V */ -JNIEXPORT jboolean JNICALL Java_org_lwjgl_input_Mouse_nCreate +JNIEXPORT void JNICALL Java_org_lwjgl_input_Mouse_nCreate (JNIEnv *, jclass); /* |