D, windows developement, frustration and fish

Vladimir Panteleev via Digitalmars-d digitalmars-d at puremagic.com
Sun Feb 1 01:52:46 PST 2015


On Sunday, 1 February 2015 at 09:42:49 UTC, ketmar wrote:
> today i was in need of a little utility that must download the 
> file using "wininet.dll".

You can find wininet.lib in the "lib" directory of the bindings 
repository. There's also a .def file in the "def" directory.

I have a WinINet wrapper here, which loads the DLL dynamically 
(to avoid the import library dependency):

https://github.com/CyberShadow/ae/blob/master/sys/net/wininet.d

It uses a common interface with two more network implementations 
(curl and native), so you can swap between them easily.


More information about the Digitalmars-d mailing list