tags:

views:

46

answers:

2

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
it is working , thanks
wizztjh
+1  A: 

You can use dumpbin.exe with the /EXPORTS switch to list the functions in a DLL.

Martin Broadhurst
Oh, and if you were on linux, you could use objdump.
Martin Broadhurst
it works! thanks for the help of you guys!
wizztjh