how to know what function names inside a dll? So that i can use it in in java with JNI
+2
A:
Something like Dependency Walker can read the names and ordinals of the functions exported by a DLL.
Ignacio Vazquez-Abrams
2010-10-14 13:17:10
it is working , thanks
wizztjh
2010-10-17 07:26:05
+1
A:
You can use dumpbin.exe with the /EXPORTS switch to list the functions in a DLL.
Martin Broadhurst
2010-10-15 20:41:42