I'm trying to call the following c++
function:
uint32_t FunctionName(uint32_t *arg1,uint32_t *arg2,uint32_t *arg3)
but I cannot find a way to map this in Javacpp
.
How do I pass the pointer reference to the function, and how do I retrieve the changed values from the passed pointers afterwards?
Something like this should work just fine: