When called from a class static initializer, maps all native methods found within that class to native libraries via the JNA raw calling interface. @param libName library name to which functions should be bound
(String libName)
| 1557 | * @param libName library name to which functions should be bound |
| 1558 | */ |
| 1559 | public static void register(String libName) { |
| 1560 | register(findDirectMappedClass(getCallingClass()), libName); |
| 1561 | } |
| 1562 | |
| 1563 | /** |
| 1564 | * When called from a class static initializer, maps all native methods |