mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 15:12:11 +02:00
server->ischannel(char *) -> server->ischannel(SERVER_REC *, char *). Added
#define server_ischannel(server, data) and it's now used everywhere.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1954 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
9833844f38
commit
95b94ed83c
10 changed files with 13 additions and 10 deletions
|
|
@ -55,7 +55,7 @@ void (*channels_join)(SERVER_REC *server, const char *data, int automatic);
|
|||
/* returns true if `flag' indicates a nick flag (op/voice/halfop) */
|
||||
int (*isnickflag)(char flag);
|
||||
/* returns true if `data' indicates a channel */
|
||||
int (*ischannel)(const char *data);
|
||||
int (*ischannel)(SERVER_REC *server, const char *data);
|
||||
/* returns all nick flag characters in order op, voice, halfop. If some
|
||||
of them aren't supported '\0' can be used. */
|
||||
const char *(*get_nick_flags)(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue