Is it possible to know the functions of a DLL without having its documentation?

Asked

Viewed 3,721 times

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?

  • 1

    This may help you: http://www.dependencywalker.com/. This question has more references: http://stackoverflow.com/questions/4438900/how-to-view-dll-functions

1 answer

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.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.