typedef function pointers?

Started by
1 comment, last by EvilCrap 22 years, 4 months ago
how do i make a typedef for a function pointer? typedef void(*)() pFunc; //doesnt work #define void(*)() pFunc; //Obviously wont work i know its possible, how is it done?
Advertisement
typedef void (*pFunc) ();
ReactOS - an Open-source operating system compatible with Windows NT apps and drivers
ahh
thanks

This topic is closed to new replies.

Advertisement