12.06.2016, 19:14
ABroadCast(COLOR_LIGHTRED,szMessage, 4)
return 1;
}
That's what you had...
Here is the correct
ABroadCast(COLOR_LIGHTRED,szMessage, 4); //< That ";" was missing.
return 1;
}
return 1;
}
That's what you had...
Here is the correct
ABroadCast(COLOR_LIGHTRED,szMessage, 4); //< That ";" was missing.
return 1;
}