How can I link the following C-function to SWIG?
int add_option(const unsigned char *data);
I am currently completing this:
public static int add_option(SWIGTYPE_p_unsigned_char data);
Is it possible to wrap it for String, Byte [], or something similar?
source
share