Thread overview
D DLLs?
Aug 17, 2004
kinghajj
Aug 17, 2004
Deja Augustine
Aug 17, 2004
Walter
Aug 17, 2004
J C Calvarese
August 17, 2004
Is it possible to make a .dll, or any other type of D shared library (Windows)?


August 17, 2004
In article <cft98n$176k$1@digitaldaemon.com>, kinghajj says...
>
>Is it possible to make a .dll, or any other type of D shared library (Windows)?
>
>

Yes, and for once I feel justified in saying RTFD, although I confess it's rather hidden.  But since you've already specified that you want to do it in windows, there's an obvious link you should check.

I'll give you a hint... it says Win32 in the name, and the html file it points to is called windows.html...

actually, in the interest of preventing any more posts than are necessary:

http://www.digitalmars.com/d/windows.html

look toward the bottom where it talks about DLLs

-Deja


August 17, 2004
"kinghajj" <kinghajj_member@pathlink.com> wrote in message news:cft98n$176k$1@digitaldaemon.com...
> Is it possible to make a .dll, or any other type of D shared library
(Windows)?

See the example in \dmd\samples\d\mydll


August 17, 2004
In article <cft98n$176k$1@digitaldaemon.com>, kinghajj says...
>
>Is it possible to make a .dll, or any other type of D shared library (Windows)?

The example at http://spottedtiger.tripod.com/D_Language/D_WinDLL.html worked for me.

jcc7