I've got an simple API with native functions(JNA) inside a DLL file which only calculates some mathematical stuff. I am using this DLL inside an JAVA application and everything works fine on the windows JVM.
The problem is that this library is going to be used in a Linux enviroment inside a Linux JVM and there will be no *.so version.
I read a couple of times that there is a way to load the DLL with wine inside the memory and use it from there but without explanations how to do it.
Can somebody confirm or refute this approach for me. And could tell me how to do it if this is really a possible sollution, please?
edit: Could be a solution which is described in How to call Wine dll from python on Linux? Can I somehow use ctypes?
Regards wurmi