Thread overview
Win32 import module for 0.76
Dec 06, 2003
Matt Green
Dec 06, 2003
Charles Sanders
Dec 06, 2003
Charles Sanders
Dec 06, 2003
Y.Tomino
December 06, 2003
Has anyone made this yet? I found one import module for D it was before it disallowed implict conversions between uint and int, which Win32 relies on for constants.

Thanks,
Matt


December 06, 2003
Couple of been made, one that ive found is most complete ( and that im trying to push to become the standard ) is at

http://hp.vector.co.jp/authors/VA028375/contents/D_windows.h.html

there was a small problem with CallWindowProc using FARPROC instead of WNDPROC ( in case u come accross this problem ) and WM_MOUSEHOVER being defined twice in comctrl.d but i think its taken care of.

I havent come accross anything in the win32 API thats not in these headers there very complete :).

C

"Matt Green" <matt@somewhere.net> wrote in message news:bqraei$447$1@digitaldaemon.com...
> Has anyone made this yet? I found one import module for D it was before it disallowed implict conversions between uint and int, which Win32 relies on for constants.
>
> Thanks,
> Matt
>
>


December 06, 2003
Theres also ansi and unicode !

C

"Charles Sanders" <sanders-consulting@comcast.net> wrote in message news:bqrij7$ghv$1@digitaldaemon.com...
> Couple of been made, one that ive found is most complete ( and that im trying to push to become the standard ) is at
>
> http://hp.vector.co.jp/authors/VA028375/contents/D_windows.h.html
>
> there was a small problem with CallWindowProc using FARPROC instead of WNDPROC ( in case u come accross this problem ) and WM_MOUSEHOVER being defined twice in comctrl.d but i think its taken care of.
>
> I havent come accross anything in the win32 API thats not in these headers there very complete :).
>
> C
>
> "Matt Green" <matt@somewhere.net> wrote in message news:bqraei$447$1@digitaldaemon.com...
> > Has anyone made this yet? I found one import module for D it was before
it
> > disallowed implict conversions between uint and int, which Win32 relies
on
> > for constants.
> >
> > Thanks,
> > Matt
> >
> >
>
>


December 06, 2003
> there was a small problem with CallWindowProc using FARPROC instead of WNDPROC ( in case u come accross this problem ) and WM_MOUSEHOVER being defined twice in comctrl.d but i think its taken care of.

I already fixed these. Please download latest.

YT