i have a windows shared library(*.dll) compiled specifically to be used from Java via JNI. Is it possible for me to call this dll from a C application? I want to call the same functions java calls but from a native c executable. How could i do that since the function definitions are JNICALL not STDCALL? Anyone has encountered the same problem?
I do not have the source code for the DLL in order to recompile it. I just need to use it's exported functions from C not from Java.
thank you, JD