Provided for improved compatibility between JNA 4.X and 5.X @see Native#load(java.lang.Class)
(Class<T> interfaceClass)
| 699 | * @see Native#load(java.lang.Class) |
| 700 | */ |
| 701 | @Deprecated |
| 702 | public static <T> T loadLibrary(Class<T> interfaceClass) { |
| 703 | return loadLibrary(null, interfaceClass); |
| 704 | } |
| 705 | |
| 706 | /** |
| 707 | * Provided for improved compatibility between JNA 4.X and 5.X |
no test coverage detected