calling thirdparty dll from java using JNI
want to call a generic dll from JAVA. The dll is provided by thirdparty. I am able to load it using "System.load("dllName.dll");" but i am now confused how can i call the methods. Since it is not made by me using JNI so there is not method with "native" keyword.
its methods are not having JNIEXPORT infront of method.
Please help me if possible send some sample code.
Thanks.
Raj

