From: jes23@cam.ac.uk (James Scott)
Subject: Re: linking against DLLs
17 Jan 1999 21:06:24 -0800
Message-ID: <Pine.A41.4.03.9901172051370.43512-100000.cygnus.gnu-win32@mibm1.jims.cam.ac.uk>
References: <36A0BF7E.CECAA202@montana.com>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
To: bowman <bowman@montana.com>
Cc: gnu-win32@cygnus.com


Thanks, 

I also found out DUMPBIN.EXE from VC5 can be used generate .def files,
e.g.:

DUMPBIN /exports foo.dll |
awk '/@/{print $3}' |
awk 'BEGIN { FS = "@"; printf("EXPORTS\n"); }
     /@/{printf("%s @%s\n", $1,$2);}' > foo.def

and I found out after ages of frustration that you've got to have a space
between the symbol name and the @ sign!

James

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
