06.03.2014, 08:33
How would I make a define that accept 'n' number of parameters?
What would this be replaced by?
pawn Код:
#define my_keyword%9my_function(%1, ...?); {print("hello");}
pawn Код:
...?
// use it like
main()
{
my_keyword my_function("OnPlayerKill", infinite_params_here...);
}