mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
updates for latest changes
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1240 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
b0178d7248
commit
c2a1971cc3
@ -17,14 +17,6 @@ CODE:
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
Irssi::Channel
|
||||
channel_create(chat_type, name, automatic)
|
||||
int chat_type
|
||||
char *name
|
||||
int automatic
|
||||
CODE:
|
||||
channel_create(chat_type, NULL, name, automatic);
|
||||
|
||||
#*******************************
|
||||
MODULE = Irssi PACKAGE = Irssi::Server
|
||||
#*******************************
|
||||
|
@ -25,11 +25,11 @@ MODULE = Irssi PACKAGE = Irssi::Log PREFIX = log_
|
||||
#*******************************
|
||||
|
||||
void
|
||||
log_item_add(log, type, name, server)
|
||||
log_item_add(log, type, name, servertag)
|
||||
Irssi::Log log
|
||||
int type
|
||||
char *name
|
||||
Irssi::Server server
|
||||
char *servertag
|
||||
|
||||
void
|
||||
log_item_destroy(log, item)
|
||||
@ -37,11 +37,11 @@ log_item_destroy(log, item)
|
||||
Irssi::Logitem item
|
||||
|
||||
Irssi::Logitem
|
||||
log_item_find(log, type, item, server)
|
||||
log_item_find(log, type, item, servertag)
|
||||
Irssi::Log log
|
||||
int type
|
||||
char *item
|
||||
Irssi::Server server
|
||||
char *servertag
|
||||
|
||||
void
|
||||
log_update(log)
|
||||
|
@ -11,13 +11,6 @@ PPCODE:
|
||||
XPUSHs(sv_2mortal(irssi_bless(rec)));
|
||||
}
|
||||
|
||||
Irssi::Query
|
||||
query_create(chat_type, server_tag, nick, automatic)
|
||||
int chat_type
|
||||
char *server_tag
|
||||
char *nick
|
||||
int automatic
|
||||
|
||||
Irssi::Query
|
||||
query_find(nick)
|
||||
char *nick
|
||||
|
@ -21,7 +21,8 @@ PPCODE:
|
||||
}
|
||||
|
||||
Irssi::Connect
|
||||
server_create_conn(dest, port=6667, password=NULL, nick=NULL)
|
||||
server_create_conn(chat_type, dest, port=6667, password=NULL, nick=NULL)
|
||||
int chat_type
|
||||
char *dest
|
||||
int port
|
||||
char *password
|
||||
|
Loading…
Reference in New Issue
Block a user