Re: DEF files

2008-07-07 Thread Brian Dessent
Konstantin Gorskov wrote: > Hi! I have build shared dll libs with cygwin , is there any command for > auto-generating *.def files for them? You can have the linker create the .def file as a side effect of linking the DLL with --output-def (so, -Wl,--output-def,filename from gcc) just as y

DEF files

2008-07-07 Thread Konstantin Gorskov
Hi! I have build shared dll libs with cygwin , is there any command for auto-generating *.def files for them? Regards, Konstantin. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com

dlltool and def files with dots and aliasing

2007-12-11 Thread Kerem Bulbul
Hi: I am trying to build an import library from a windows dll for which I do not have the source code. I am new to cygwin and programming on windows, and I understand that there are two main steps to this: 1. Extract a def file from the dll 2. Use dlltool to create the import library The met