mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2026-09-07 07:27:12 +02:00
More unnecessary properties removed from the IRC session type.
This commit is contained in:
+1
-21
@@ -226,29 +226,9 @@ void RegisterAPI(HSQUIRRELVM vm)
|
||||
.Prop(_SC("CtcpVersion"), (void (Session::*)(void))(nullptr), &Session::SetCtcpVersion)
|
||||
.Prop(_SC("ErrNo"), &Session::GetErrNo)
|
||||
.Prop(_SC("ErrStr"), &Session::GetErrStr)
|
||||
.Prop(_SC("OnConnect"), &Session::GetOnConnect)
|
||||
.Prop(_SC("OnNick"), &Session::GetOnNick)
|
||||
.Prop(_SC("OnQuit"), &Session::GetOnQuit)
|
||||
.Prop(_SC("OnJoin"), &Session::GetOnJoin)
|
||||
.Prop(_SC("OnPart"), &Session::GetOnPart)
|
||||
.Prop(_SC("OnMode"), &Session::GetOnMode)
|
||||
.Prop(_SC("OnUmode"), &Session::GetOnUmode)
|
||||
.Prop(_SC("OnTopic"), &Session::GetOnTopic)
|
||||
.Prop(_SC("OnKick"), &Session::GetOnKick)
|
||||
.Prop(_SC("OnChannel"), &Session::GetOnChannel)
|
||||
.Prop(_SC("OnPrivMsg"), &Session::GetOnPrivMsg)
|
||||
.Prop(_SC("OnNotice"), &Session::GetOnNotice)
|
||||
.Prop(_SC("OnChannelNotice"), &Session::GetOnChannelNotice)
|
||||
.Prop(_SC("OnInvite"), &Session::GetOnInvite)
|
||||
.Prop(_SC("OnCtcpReq"), &Session::GetOnCtcpReq)
|
||||
.Prop(_SC("OnCtcpRep"), &Session::GetOnCtcpRep)
|
||||
.Prop(_SC("OnCtcpAction"), &Session::GetOnCtcpAction)
|
||||
.Prop(_SC("OnUnknown"), &Session::GetOnUnknown)
|
||||
.Prop(_SC("OnNumeric"), &Session::GetOnNumeric)
|
||||
.Prop(_SC("OnDccChatReq"), &Session::GetOnDccChatReq)
|
||||
.Prop(_SC("OnDccSendReq"), &Session::GetOnDccSendReq)
|
||||
// Member Methods
|
||||
.Func(_SC("Bind"), &Session::BindEvent)
|
||||
.Func(_SC("GetEvent"), &Session::GetEvent)
|
||||
.Func(_SC("Disconnect"), &Session::Disconnect)
|
||||
.Func(_SC("CmdPart"), &Session::CmdPart)
|
||||
.Func(_SC("CmdInvite"), &Session::CmdInvite)
|
||||
|
||||
Reference in New Issue
Block a user