I have a question related to pointers to pointers in JNI.
If I have the following function in C:
void myfunction(int **pp);
How do I get the reference of int **pp
in Java? And how do I pass to a JNI function the reference in order to modify it?
Can you lead me to a solution? I can work with simple pointers but not with pointers to pointers.