Let's say I have a C ++ DLL with one exported method, for example:
CustomerProcessor* getInstance();
i.e. it just returns an instance of the class that actually contains the methods that I need to call.
I know that I can map the getInstance () method to a Java class using JNA (extension com.sun.jna.Library), save the returned CustomerProcessor instance to com.sun.jna.Pointer.
Can I somehow map this to the CustomerProcessor class so that I can call methods on it (and if so, how)?
java jna
William
source share