Java Foreign API: how to pass pointers and pointers address?

I am working with the new Java Foreign API and I have to call two C functions (Java bindings generated using the JExtract tool) that take in input a double pointer and a pointer: https://yara.readthedocs.io/en/stable/capi.html#c.yr_compiler_create https://yara.readthedocs.io/en/stable/capi.html#c.yr_compiler_destroy int yr_compiler_create(YR_COMPILER** compiler) void yr_compiler_destroy(YR_COMPILER* compiler) In the official YARA C API tests these methods are called as follows:… Read More Java Foreign API: how to pass pointers and pointers address?