forked from PsychoticNinja/irssi
updated
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1090 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
abcb44f835
commit
ddfb8dea3a
@ -78,10 +78,10 @@ static void perl_netsplit_server_fill_hash(HV *hv, NETSPLIT_SERVER_REC *rec)
|
|||||||
hv_store(hv, "count", 5, newSViv(rec->count), 0);
|
hv_store(hv, "count", 5, newSViv(rec->count), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void perl_netsplit_channel_fill_hash(HV *hv, NETSPLIT_CHANNEL_REC *rec)
|
static void perl_netsplit_channel_fill_hash(HV *hv, NETSPLIT_CHAN_REC *rec)
|
||||||
{
|
{
|
||||||
hv_store(hv, "name", 4, new_pv(rec->name), 0);
|
hv_store(hv, "name", 4, new_pv(rec->name), 0);
|
||||||
hv_store(hv, "nick", 4, irssi_bless(rec->nick), 0);
|
hv_store(hv, "nick", 4, irssi_bless(&rec->nick), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void perl_autoignore_fill_hash(HV *hv, AUTOIGNORE_REC *ai)
|
static void perl_autoignore_fill_hash(HV *hv, AUTOIGNORE_REC *ai)
|
||||||
|
@ -24,5 +24,6 @@ typedef BAN_REC *Irssi__Irc__Ban;
|
|||||||
typedef DCC_REC *Irssi__Irc__Dcc;
|
typedef DCC_REC *Irssi__Irc__Dcc;
|
||||||
typedef NETSPLIT_REC *Irssi__Irc__Netsplit;
|
typedef NETSPLIT_REC *Irssi__Irc__Netsplit;
|
||||||
typedef NETSPLIT_SERVER_REC *Irssi__Irc__Netsplitserver;
|
typedef NETSPLIT_SERVER_REC *Irssi__Irc__Netsplitserver;
|
||||||
|
typedef NETSPLIT_CHAN_REC *Irssi__Irc__Netsplitchannel;
|
||||||
typedef AUTOIGNORE_REC *Irssi__Irc__Autoignore;
|
typedef AUTOIGNORE_REC *Irssi__Irc__Autoignore;
|
||||||
typedef NOTIFYLIST_REC *Irssi__Irc__Notifylist;
|
typedef NOTIFYLIST_REC *Irssi__Irc__Notifylist;
|
||||||
|
@ -13,6 +13,8 @@ Irssi::Irc::Netsplitchannel T_PlainObj
|
|||||||
Irssi::Irc::Autoignore T_PlainObj
|
Irssi::Irc::Autoignore T_PlainObj
|
||||||
Irssi::Irc::Notifylist T_PlainObj
|
Irssi::Irc::Notifylist T_PlainObj
|
||||||
|
|
||||||
|
Irssi::Windowitem T_IrssiObj
|
||||||
|
|
||||||
INPUT
|
INPUT
|
||||||
|
|
||||||
T_IrssiObj
|
T_IrssiObj
|
||||||
|
Loading…
x
Reference in New Issue
Block a user