2001-02-09 17:00:51 -05:00
|
|
|
#ifndef __CHAT_COMPLETION_H
|
|
|
|
#define __CHAT_COMPLETION_H
|
|
|
|
|
2002-10-14 12:12:01 -04:00
|
|
|
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);
|
2002-11-21 13:24:51 -05:00
|
|
|
GList *completion_msg(SERVER_REC *win_server, SERVER_REC *find_server,
|
|
|
|
const char *nick, const char *prefix);
|
2002-10-14 12:12:01 -04:00
|
|
|
|
2001-02-09 17:00:51 -05:00
|
|
|
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
|