5
It is possible to discover which functions are available in a DLL without having its documentation in hand so we can use, in Java, for example?
5
It is possible to discover which functions are available in a DLL without having its documentation in hand so we can use, in Java, for example?
9
It is possible to get through a utility to list DLL members such as the dumpbin Visual Studio or the DLL Export Viewer or the Dependency Walker.
This will not give many details and will not tell which ones can actually be used freely. It will list even what is private and should not be called. So stick to the documentation. Always! If it is not documented do not use.
Finding functions in the DLL in no way means you can use them directly in Java, much less if you don’t know exactly how to use them.
Reinforcing If not documented, do not use.. +1
Browser other questions tagged function dll
You are not signed in. Login or sign up in order to post.
This may help you: http://www.dependencywalker.com/. This question has more references: http://stackoverflow.com/questions/4438900/how-to-view-dll-functions
– cantoni