CDECL Utility

jpl none at nospam.com
Sun Dec 30 08:17:10 PST 2007


Jarrett Billingsley Wrote:

> 
> void function(int) signal_function;
> 
> Pointer to a function that takes an int and returns a function.
> 

(void (*)(int))signal_function; 
This is really; cast signal_function to pointer to a function(int) that returns void. 


More information about the Digitalmars-d-learn mailing list