I'm trying to map the following function in my header file to java using javacpp:
bool Foo( const void*& bar, uint32_t& baz );
This generates the following java code:
public native @Cast("bool") boolean Foo(, @Cast("uint32_t*") @ByRef IntPointer baz );
public native @Cast("bool") boolean Foo(, @Cast("uint32_t*") @ByRef IntBuffer baz );
public native @Cast("bool") boolean Foo(, @Cast("uint32_t*") @ByRef int[] baz );
Any guidance on what to put in my infoMap
to get this to correctly map the reference pointer?
Thanks!