Basically I have so many damn functions in war3ft I need to start making function prototypes in order to do this...
(header files with function names etc...)
I tried doing like:
Code:
forward _DOD_showMoney(parm[3]);
and
Code:
native _DOD_showMoney(parm[3]);
and
Code:
public _DOD_showMoney(parm[3]);
But these give me errors, what is the proper way to do a function prototype?
__________________