22 Aug
2009
22 Aug
'09
3:17 p.m.
I have a windows dll without source code (vendor.dll) that I want to use in a winelib application.
1) Creating a vendor.def file doesn't work. The resulting file has an empty EXPORTS section:
winedump spec vendor.dll winebuild --def -E vendor.spec -o vendor.def
That seems to mean winedump isn't parsing this right, or that it truly has no exports. You want to debug winedump, perhaps by adding the -v flag to winedump. --Juan