- bugfix for IRC nicks using non standard ascii chars (we replace invalid chars on IRC with -

This commit is contained in:
Mark Vejvoda
2011-08-30 23:45:51 +00:00
parent 3eb375904c
commit 1a6cdf3a06
3 changed files with 51 additions and 0 deletions

View File

@@ -36,6 +36,8 @@ enum IRCEventType {
IRC_evt_exitThread = 1
};
void normalizeNick(char *nick);
class IRCCallbackInterface {
public:
virtual void IRC_CallbackEvent(IRCEventType evt, const char* origin, const char **params, unsigned int count) = 0;