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:
|
OUTPUT:
|
||||||
RETVAL
|
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
|
MODULE = Irssi PACKAGE = Irssi::Server
|
||||||
#*******************************
|
#*******************************
|
||||||
|
@ -25,11 +25,11 @@ MODULE = Irssi PACKAGE = Irssi::Log PREFIX = log_
|
|||||||
#*******************************
|
#*******************************
|
||||||
|
|
||||||
void
|
void
|
||||||
log_item_add(log, type, name, server)
|
log_item_add(log, type, name, servertag)
|
||||||
Irssi::Log log
|
Irssi::Log log
|
||||||
int type
|
int type
|
||||||
char *name
|
char *name
|
||||||
Irssi::Server server
|
char *servertag
|
||||||
|
|
||||||
void
|
void
|
||||||
log_item_destroy(log, item)
|
log_item_destroy(log, item)
|
||||||
@ -37,11 +37,11 @@ log_item_destroy(log, item)
|
|||||||
Irssi::Logitem item
|
Irssi::Logitem item
|
||||||
|
|
||||||
Irssi::Logitem
|
Irssi::Logitem
|
||||||
log_item_find(log, type, item, server)
|
log_item_find(log, type, item, servertag)
|
||||||
Irssi::Log log
|
Irssi::Log log
|
||||||
int type
|
int type
|
||||||
char *item
|
char *item
|
||||||
Irssi::Server server
|
char *servertag
|
||||||
|
|
||||||
void
|
void
|
||||||
log_update(log)
|
log_update(log)
|
||||||
|
@ -11,13 +11,6 @@ PPCODE:
|
|||||||
XPUSHs(sv_2mortal(irssi_bless(rec)));
|
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
|
Irssi::Query
|
||||||
query_find(nick)
|
query_find(nick)
|
||||||
char *nick
|
char *nick
|
||||||
|
@ -21,7 +21,8 @@ PPCODE:
|
|||||||
}
|
}
|
||||||
|
|
||||||
Irssi::Connect
|
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
|
char *dest
|
||||||
int port
|
int port
|
||||||
char *password
|
char *password
|
||||||
|
Loading…
Reference in New Issue
Block a user