In what way can I list the API functions provided from a certain dll file? I seem to remember seeing somewhere that you could use a debugger, but I'm not sure.
James Hawkins wrote:
In what way can I list the API functions provided from a certain dll file? I seem to remember seeing somewhere that you could use a debugger, but I'm not sure.
I usually use Dependency Walker (http://www.dependencywalker.com/) which works fine under wine (seems strange because it's a microsoft product, but that's it ;) It's also useful to track down which dlls uses an executable and then try to load the native ones.
On Sat, Jul 24, 2004 at 05:11:18PM -0500, James Hawkins wrote:
In what way can I list the API functions provided from a certain dll file? I seem to remember seeing somewhere that you could use a debugger, but I'm not sure.
Do you mean the symbols, or something else? For the symbols, you can use pexports from mingw-utils, or a nm compiled for the mingw target.
Hi,
On Sat, Jul 24, 2004 at 05:11:18PM -0500, James Hawkins wrote:
In what way can I list the API functions provided from a certain dll file? I seem to remember seeing somewhere that you could use a debugger, but I'm not sure.
wine/tools/winedump/ (now even with 16bit NE file support)
Greetings,
Andreas Mohr