Subj : Re: Function pointer To : borland.public.cpp.borlandcpp From : Peter Strömberg Date : Wed Jun 15 2005 02:51 am "teo" wrote in news:42afd667$1 @newsgroups.borland.com: > #define _T_MENO(appo) t_meno(appo) > #define _MENO(appo) meno(appo) > > So i should call > JogMoveControl(1,1,_T_MENO,_MENO) > In this case the compiler doesn't found the functions ,_T_MENO e _MENO > > Suggestions? If you define _T_MENO and _MENO as function-like macros you can't use them as object-like macros. #define _T_MENO t_meno #define _MENO meno JogMoveControl(1,1,_T_MENO,_MENO) .