11.12.2009, 11:58
Good morning. I'm making a macro in order to traverse the vector of a variable, but as I do not know much about macros, is giving an error:
Macro:
And how I write this macro (or function) more readable and better performance?
Thanks!
Код:
error 075: input line too long (after substitutions)
pawn Код:
#define percorrerVetor(%1[%2])\
for(new %3; %3 < %2; %3++)\
{\
loopstart:\
}\
goto loopstart;\
Thanks!