I've the following macro:
#define MY_FCT1( id, ... ) \
FCT( id,__VA_ARGS__ ); \
and I want to create a new one to do something like this:
#define MY_FCT2( id, ... ) \
MY_FCT1( id, (" %s : ",Name())" "__VA_ARGS__); \
but I get the following error:
error: expression cannot be used as a function
Anyone have an idea how to solve this issue please?