I have a C function defined as follows:
int s3vold_(void) {...}
To create a Java methods with the same argument type as the native function does the void parameter map to Pointer or nothing? E.g.,
int s3vold(Pointer p) {...}
or
int s3vold() {...}
The JNA docs only refer to void*