1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-08 01:47:11 +02:00

Remove the session from the IRC event parameters.

Rename the IRC module scope to uppercase.
This commit is contained in:
Sandu Liviu Catalin
2016-05-24 20:51:34 +03:00
parent f05e562708
commit 8ca7f5bfa7
3 changed files with 32 additions and 45 deletions

View File

@ -918,25 +918,25 @@ protected:
/* --------------------------------------------------------------------------------------------
* Forward session events to a script callback.
*/
static void ForwardEvent(Session * session, Function & listener, CCStr event,
static void ForwardEvent(Function & listener, CCStr event,
CCStr origin, CCStr * params, Uint32 count);
/* --------------------------------------------------------------------------------------------
* Forward session events to a script callback.
*/
static void ForwardEvent(Session * session, Function & listener, Uint32 event,
static void ForwardEvent(Function & listener, Uint32 event,
CCStr origin, CCStr * params, Uint32 count);
/* --------------------------------------------------------------------------------------------
* Forward session events to a script callback.
*/
static void ForwardEvent(Session * session, Function & listener, CCStr nick,
static void ForwardEvent(Function & listener, CCStr nick,
CCStr addr, irc_dcc_t dccid);
/* --------------------------------------------------------------------------------------------
* Forward session events to a script callback.
*/
static void ForwardEvent(Session * session, Function & listener, CCStr nick,
static void ForwardEvent(Function & listener, CCStr nick,
CCStr addr, CCStr filename, Ulong size, irc_dcc_t dccid);
/* --------------------------------------------------------------------------------------------