mirror of
https://github.com/irssi/irssi.git
synced 2025-05-01 16:01:14 -05:00
separately now). Added statusbar code to available to perl, it's now possible to create new statusbar items with perl scripts. statusbar_items_redraw(char *name) can now be used to easily redraw all named statusbar items in screen. Probably several other changes I've already forgotten :) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1861 dbcabf3a-b0e7-0310-adc4-f8d773084564
55 lines
981 B
Plaintext
55 lines
981 B
Plaintext
#include "module.h"
|
|
|
|
MODULE = Irssi::Irc::Modes PACKAGE = Irssi::Irc
|
|
PROTOTYPES: ENABLE
|
|
|
|
char *
|
|
modes_join(old, mode, channel)
|
|
char *old
|
|
char *mode
|
|
int channel
|
|
|
|
#*******************************
|
|
MODULE = Irssi::Irc::Modes PACKAGE = Irssi::Irc::Channel PREFIX = channel_
|
|
#*******************************
|
|
|
|
char *
|
|
ban_get_mask(channel, nick, ban_type)
|
|
Irssi::Irc::Channel channel
|
|
char *nick
|
|
int ban_type
|
|
|
|
Irssi::Irc::Ban
|
|
banlist_add(channel, ban, nick, time)
|
|
Irssi::Irc::Channel channel
|
|
char *ban
|
|
char *nick
|
|
time_t time
|
|
|
|
void
|
|
banlist_remove(channel, ban)
|
|
Irssi::Irc::Channel channel
|
|
char *ban
|
|
|
|
Irssi::Irc::Ban
|
|
banlist_exception_add(channel, ban, nick, time)
|
|
Irssi::Irc::Channel channel
|
|
char *ban
|
|
char *nick
|
|
time_t time
|
|
|
|
void
|
|
banlist_exception_remove(channel, ban)
|
|
Irssi::Irc::Channel channel
|
|
char *ban
|
|
|
|
void
|
|
invitelist_add(channel, mask)
|
|
Irssi::Irc::Channel channel
|
|
char *mask
|
|
|
|
void
|
|
invitelist_remove(channel, mask)
|
|
Irssi::Irc::Channel channel
|
|
char *mask
|