mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
7c7afe9f54
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3019 dbcabf3a-b0e7-0310-adc4-f8d773084564
17 lines
640 B
C
17 lines
640 B
C
#ifndef __CHAT_COMPLETION_H
|
|
#define __CHAT_COMPLETION_H
|
|
|
|
GList *completion_get_chatnets(const char *word);
|
|
GList *completion_get_servers(const char *word);
|
|
GList *completion_get_servertags(const char *word);
|
|
GList *completion_get_channels(SERVER_REC *server, const char *word);
|
|
GList *completion_get_aliases(const char *word);
|
|
GList *completion_msg(SERVER_REC *win_server, SERVER_REC *find_server,
|
|
const char *nick, const char *prefix);
|
|
|
|
void completion_last_message_add(const char *nick);
|
|
void completion_last_message_remove(const char *nick);
|
|
void completion_last_message_rename(const char *oldnick, const char *newnick);
|
|
|
|
#endif
|