Registering multiple .dll libraries into a single java class using JNA
问题 First of all some context, to thoroughly explain the methods I've already tried: I'm working in a java-based programming platform on windows which provides access to custom java functions with several other extensions. Within the source code of this modelling platform, there is a class "CVODE" which grants access to native library "cvode" to import the functionality of a C++ library CVODE. //imports public class CVODE { static { Native.register("cvode"); } public static native int ... /