mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 16:12:30 +02:00
Lots of moving stuff around - hopefully I didn't break too much :)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@632 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
3d124da13b
commit
e395e87ded
160 changed files with 3954 additions and 2959 deletions
25
src/irc/core/irc-queries.h
Normal file
25
src/irc/core/irc-queries.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#ifndef __IRC_QUERIES_H
|
||||
#define __IRC_QUERIES_H
|
||||
|
||||
#include "queries.h"
|
||||
#include "irc-servers.h"
|
||||
|
||||
#define IS_IRC_QUERY(query) \
|
||||
((query) != NULL && \
|
||||
module_find_id("IRC QUERY", \
|
||||
((QUERY_REC *) (query))->chat_type) != -1)
|
||||
|
||||
/* Returns IRC_QUERY_REC if it's IRC query, NULL if it isn't. */
|
||||
#define IRC_QUERY(query) \
|
||||
(IS_IRC_QUERY(query) ? (QUERY_REC *) (query) : NULL)
|
||||
|
||||
void irc_queries_init(void);
|
||||
void irc_queries_deinit(void);
|
||||
|
||||
#define irc_query_find(server, name) \
|
||||
query_find(SERVER(server), name)
|
||||
|
||||
QUERY_REC *irc_query_create(IRC_SERVER_REC *server,
|
||||
const char *nick, int automatic);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue