|
|
|||||||
|
I am new to JNI and working on a JNI module, where I need to call a C++ method and I have to make a JNI call to call that method. As a new to JNI and dont have good knowledge of this. The C++ method signature is something like -- sharedResource(CheckResource chk) this sharedResource method is implemented in C and it internally uses the CheckResource object to check the resources. CheckResource is a c++ obejct Any idea as how can I create the CheckResource object and pass it to this method. Do I need to create the CheckResource object calling constructor of CheckResource? Please help, thank in advance |