digitalmars.D.learn - function pointers with different calling conventions
- Lutger (4/4) Nov 01 2007 Does anybody know the syntax to declare a function pointer with the
- Regan Heath (6/11) Nov 01 2007 Try:
- Jarrett Billingsley (6/10) Nov 01 2007 I use:
- BCS (3/18) Nov 01 2007 not exactly the same (I think) as Regan's also effects the linkage of th...
Does anybody know the syntax to declare a function pointer with the windows calling convention? DMD suggests the type of such pointers is int(Windows *)() for example, but this does not work.
Nov 01 2007
Lutger wrote:Does anybody know the syntax to declare a function pointer with the windows calling convention? DMD suggests the type of such pointers is int(Windows *)() for example, but this does not work.Try: extern(Windows) int function() fPointer; writefln(typeof(fPointer)) will hopefully output "int(Windows *)()" I don't have a DMD handy to test it so this is a guess. Regan
Nov 01 2007
"Lutger" <lutger.blijdestijn gmail.com> wrote in message news:fgccpu$3171$1 digitalmars.com...Does anybody know the syntax to declare a function pointer with the windows calling convention? DMD suggests the type of such pointers is int(Windows *)() for example, but this does not work.I use: extern(Windows) alias int function() WinIntFunc; WinIntFunc f; It probably works the same as Regan's way..
Nov 01 2007
Reply to Jarrett,"Lutger" <lutger.blijdestijn gmail.com> wrote in message news:fgccpu$3171$1 digitalmars.com...not exactly the same (I think) as Regan's also effects the linkage of the variable.Does anybody know the syntax to declare a function pointer with the windows calling convention? DMD suggests the type of such pointers is int(Windows *)() for example, but this does not work.I use: extern(Windows) alias int function() WinIntFunc; WinIntFunc f; It probably works the same as Regan's way..
Nov 01 2007