Hello Jim, Jim Michaels <[email protected]> wrote on 10.03.2010 07:02:37:
> what is the mingw equivalent of msvc > dumpbin /exports kernel32.dll > ? > this dumps a list of all the functions exported by the DLL. it is > especially useful in figuring out what functions, if any, are > available to you and what functions you should research, and what > dll's contain what functions (for instance, what libraries contain > what functions, such as libwinuser.a?). > > I usually redirect the output to a text file and grep it for needed functions. > > Jim Michaels > [email protected](main) > JesusnJim.com (my site)DoLifeComputers.JesusnJim.com > (Do Life Computers group site which I lead) > There are two different possibilities to do this. Using the objdump tool provided by binutils (eg. 'x86_64-w64-mingw32-objdump -x <path-to>/kernel32.dll'). The other way is to use our gendef tool (eg, gendef <path-to>/kernel32.dll). By it you get a kernel32.def file which contains all exports of this DLL. I hope this has helped you Kai | (\_/) This is Bunny. Copy and paste Bunny | (='.'=) into your signature to help him gain | (")_(") world domination. ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
