Added SILC Thread Queue API
[crypto.git] / apps / irssi / src / fe-common / core / chat-completion.h
1 #ifndef __CHAT_COMPLETION_H
2 #define __CHAT_COMPLETION_H
3
4 GList *completion_get_chatnets(const char *word);
5 GList *completion_get_servers(const char *word);
6 GList *completion_get_servertags(const char *word);
7 GList *completion_get_channels(SERVER_REC *server, const char *word);
8 GList *completion_get_aliases(const char *word);
9 GList *completion_msg(SERVER_REC *win_server, SERVER_REC *find_server,
10                              const char *nick, const char *prefix);
11
12 void completion_last_message_add(const char *nick);
13 void completion_last_message_remove(const char *nick);
14 void completion_last_message_rename(const char *oldnick, const char *newnick);
15
16 #endif