How to access global variable via JNA interface?
I need to access a “native” C library from Java via Java Native Access (JNA). The idiomatic way to do this seems to be defining an interface that extends Library
and that declares all the functions which I need to access. Then create a singleton instance, via Native.load()
method:
How to access global variable via JNA?
I need to access a “native” C library from Java via Java Native Access (JNA). The idiomatic way to do this seems to be defining an interface that extends Library
and that declares all the functions which I need to access. Then create a singleton instance, via Native.load()
method: