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:
@ -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);
|
||||
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user