hello,
does anyone know if I can write a macro that takes a number as argument and according to that number declares a variable number of functions ?
ex:
DEFINE_FUNC( 4 );
is replaced with
void func_1();
void func_2();
void func_3();
void func_4();
thx