public interface NativeFunctionHandle
Modifier and Type | Method and Description |
---|---|
Object |
call(Object... args)
Calls the native function.
|
Object call(Object... args)
The caller is responsible for ensuring args
comply with the platform ABI (e.g. Unix AMD64 ABI). If the library
function has struct parameters, the fields of the struct must be passed as individual
arguments.
args
- the arguments that will be passed to the native function