T
teo
I have the functions
static void JogMoveControl(int inputOff,int
inputOn,void(*functionMoveT)(char c),void(*functionMove)(char c));
void t_meno(char comm)
void meno(char comm)
If I call JogMoveControl(1,1,t_meno,meno) no problem
but I have
#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?
Thanks
Teo
static void JogMoveControl(int inputOff,int
inputOn,void(*functionMoveT)(char c),void(*functionMove)(char c));
void t_meno(char comm)
void meno(char comm)
If I call JogMoveControl(1,1,t_meno,meno) no problem
but I have
#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?
Thanks
Teo