For those of you that don't know:
Code:
this_is_linux_style()
ThisIsWindowsStyle()
I've always stuck with the latter style and apparently as stated before, BAIL likes the window's style to (it's easier to tell what is a function, and what is a variable and other stuff.)
You could use defines though if you're
that annoyed with it.
Code:
// IIRC you can do this in pawn.
#define this_is_my_function AFunctionUsingWindowsStyle
this_is_my_function(hi);
__________________