10.01.2013, 21:24
(
Последний раз редактировалось nestyx; 10.01.2013 в 21:26.
Причина: bad headline
)
hi, i just want to know some stuff... 
1.) Which datatypes I can use in PAWN as parameters?
for example:
2.) And where is the difference between:
if i call the function with...
3.) Does the definition of a function in PAWN need the return-typ? If not, why?

1.) Which datatypes I can use in PAWN as parameters?
for example:
Код:
function(int i, float f, bool b, String s, char c, char[256] chrarray)
Код:
function(filename[]) // this
Код:
function(const filename[]) // and this
Код:
function("ReadMe");
