Re: passing argments between java and c

2000-05-19 Thread Rich Ibbotson
;ReleaseArrayElements(env, a, 0); } cheers, Rich Boris wrote: > > hello, > I meet a question in passing argments between java and c. > In my java program,I call a method in a .dll file and pass a array to it. > In the .h file that generated by javah,function declaration is foll

Re: passing argments between java and c

2000-05-19 Thread Harri Sunila
On Fri, 19 May 2000, Boris wrote: > hello, > I meet a question in passing argments between java and c. > In my java program,I call a method in a .dll file and pass a array to it. > In the .h file that generated by javah,function declaration is followling: This has probably n

passing argments between java and c

2000-05-19 Thread Boris
hello, I meet a question in passing argments between java and c. In my java program,I call a method in a .dll file and pass a array to it. In the .h file that generated by javah,function declaration is followling: JNIEXPORT void JNICALL Java_call_aug (JNIEnv *, jobject, jlongArray); I write