Thread overview
module definition files and dll export
Dec 19, 2013
Adam D. Ruppe
Dec 20, 2013
Martin Nowak
Dec 20, 2013
Andrej Mitrovic
December 19, 2013
Is there a way to skip writing the exports section and using a .def file when doing a DLL on Windows now?

And if not, will/can DIP45 allow that?
December 20, 2013
On 12/19/2013 09:55 PM, Adam D. Ruppe wrote:
> Is there a way to skip writing the exports section and using a .def file
> when doing a DLL on Windows now?
>
> And if not, will/can DIP45 allow that?

I'm no Windows expert but I think you can always export symbols using a .def file. It's simply a matter of the linker understanding .def files.
December 20, 2013
On 12/19/13, Adam D. Ruppe <destructionator@gmail.com> wrote:
> Is there a way to skip writing the exports section and using a .def file when doing a DLL on Windows now?
>
> And if not, will/can DIP45 allow that?

Not sure if you mean avoiding using the EXPORTS section in a .def file, or if you want to avoid using export declarations in code? (they're alternatives to each other).