Thread overview |
---|
August 31, 2002 void (*__stdcall pf)(); | ||||
---|---|---|---|---|
| ||||
void (*__stdcall pf)(); This declares a pointer to a function with stdcall calling convention. How's this translated in D? I tried the following line, but doesn't work. void (*extern(Window) pf)(); |
August 31, 2002 Re: void (*__stdcall pf)(); | ||||
---|---|---|---|---|
| ||||
Posted in reply to Dario | "Dario" <supdar@yahoo.com> wrote in message news:akrbp9$1e6n$1@digitaldaemon.com... > void (*__stdcall pf)(); > This declares a pointer to a function with stdcall calling convention. > How's this translated in D? > > I tried the following line, but doesn't work. > void (*extern(Window) pf)(); extern (Windows) void (*pf)(); |
September 01, 2002 Re: void (*__stdcall pf)(); | ||||
---|---|---|---|---|
| ||||
Posted in reply to Walter | > > void (*__stdcall pf)(); > > This declares a pointer to a function with stdcall calling convention. > > How's this translated in D? > > > > I tried the following line, but doesn't work. > > void (*extern(Window) pf)(); > extern (Windows) void (*pf)(); Uhu, I didn't tried it. Thank you Walter. =) |
Copyright © 1999-2021 by the D Language Foundation