Create a new Function that is linked with a native function that follows the NativeLibrary's calling convention. The allocated instance represents a pointer to the named native function from the library. @param functionName Name of the native function to be linked with @th
(String functionName)
| 542 | * @throws UnsatisfiedLinkError if the function is not found |
| 543 | */ |
| 544 | public Function getFunction(String functionName) { |
| 545 | return getFunction(functionName, callFlags); |
| 546 | } |
| 547 | |
| 548 | /** |
| 549 | * Create a new {@link Function} that is linked with a native |