mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 00:22:17 +02:00
12 lines
266 B
C
12 lines
266 B
C
|
|
#ifndef __FE_QUERIES_H
|
||
|
|
#define __FE_QUERIES_H
|
||
|
|
|
||
|
|
#include "queries.h"
|
||
|
|
|
||
|
|
/* Return query where to put the private message. */
|
||
|
|
QUERY_REC *privmsg_get_query(SERVER_REC *server, const char *nick, int own);
|
||
|
|
|
||
|
|
void fe_queries_init(void);
|
||
|
|
void fe_queries_deinit(void);
|
||
|
|
|
||
|
|
#endif
|