[ctypes-commit] ctypes-java/src/test/ctypes/java/test/win32 CallbackTest.java,1.3,1.4
Brought to you by:
theller
From: Bradley L S. <bs...@us...> - 2004-08-29 01:28:17
|
Update of /cvsroot/ctypes/ctypes-java/src/test/ctypes/java/test/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19412/src/test/ctypes/java/test/win32 Modified Files: CallbackTest.java Log Message: Index: CallbackTest.java =================================================================== RCS file: /cvsroot/ctypes/ctypes-java/src/test/ctypes/java/test/win32/CallbackTest.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CallbackTest.java 19 Apr 2004 13:39:03 -0000 1.3 --- CallbackTest.java 29 Aug 2004 01:28:06 -0000 1.4 *************** *** 100,104 **** // the arguments to the quicksort function ! Object[] arg = { intArray, // the array to be sorted new CInt(intArray.getLength()), // length of array new CInt(4), // size of array element (in bytes) --- 100,104 ---- // the arguments to the quicksort function ! Object[] args = { intArray, // the array to be sorted new CInt(intArray.getLength()), // length of array new CInt(4), // size of array element (in bytes) *************** *** 106,110 **** // quicksort the ints (call it) ! qsort.call(CInt.class, arg, CFunction.FUNCFLAG_CDECL ); // check that it is sorted. --- 106,110 ---- // quicksort the ints (call it) ! qsort.call(CInt.class, args, CFunction.FUNCFLAG_CDECL ); // check that it is sorted. |