mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 15:42:26 +02:00
Object type checking fixes
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@638 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
cf7eb945ea
commit
b4bdec4436
15 changed files with 78 additions and 75 deletions
|
|
@ -3,21 +3,19 @@
|
|||
|
||||
#include "servers.h"
|
||||
|
||||
#define IS_IRC_SERVER(server) \
|
||||
((server) != NULL && \
|
||||
module_find_id("IRC SERVER", (server)->chat_type) != -1)
|
||||
|
||||
#define IS_IRC_SERVER_CONNECT(conn) \
|
||||
((conn) != NULL && \
|
||||
module_find_id("IRC SERVER CONNECT", (conn)->chat_type) != -1)
|
||||
|
||||
/* returns IRC_SERVER_REC if it's IRC server, NULL if it isn't */
|
||||
#define IRC_SERVER(server) \
|
||||
(IS_IRC_SERVER(server) ? (IRC_SERVER_REC *) (server) : NULL)
|
||||
MODULE_CHECK_CAST(server, IRC_SERVER_REC, chat_type, "IRC SERVER")
|
||||
|
||||
#define IRC_SERVER_CONNECT(conn) \
|
||||
(IS_IRC_SERVER_CONNECT(conn) ? \
|
||||
(IRC_SERVER_CONNECT_REC *) (conn) : NULL)
|
||||
MODULE_CHECK_CAST(conn, IRC_SERVER_CONNECT_REC, \
|
||||
chat_type, "IRC SERVER CONNECT")
|
||||
|
||||
#define IS_IRC_SERVER(server) \
|
||||
(IRC_SERVER(server) ? TRUE : FALSE)
|
||||
|
||||
#define IS_IRC_SERVER_CONNECT(conn) \
|
||||
(IRC_SERVER_CONNECT(conn) ? TRUE : FALSE)
|
||||
|
||||
/* all strings should be either NULL or dynamically allocated */
|
||||
/* address and nick are mandatory, rest are optional */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue