com.sun.jna.Native Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt Show documentation
Show all versions of jtransc-rt Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
package com.sun.jna;
import com.jtransc.ffi.JTranscFFI;
public class Native {
public static Object loadLibrary(String name, Class interfaceClass) {
return JTranscFFI.loadLibrary(name, interfaceClass);
}
}