/* * Copyright (C) 2022-2023 Sébastien Helleu * * This file is part of WeeChat, the extensible chat client. * * WeeChat is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * WeeChat is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with WeeChat. If not, see . */ #ifndef WEECHAT_PLUGIN_IRC_JOIN_H #define WEECHAT_PLUGIN_IRC_JOIN_H struct t_irc_server; struct t_irc_join_channel { char *name; /* channel name */ char *key; /* channel key */ }; extern struct t_arraylist *irc_join_split (struct t_irc_server *server, const char *join, int sort); extern char *irc_join_build_string (struct t_arraylist *arraylist); extern char *irc_join_add_channel (struct t_irc_server *server, const char *join, const char *channel_name, const char *key); extern char *irc_join_add_channels (struct t_irc_server *server, const char *join, const char *join2); extern void irc_join_add_channel_to_autojoin (struct t_irc_server *server, const char *channel_name, const char *key); extern void irc_join_add_channels_to_autojoin (struct t_irc_server *server, const char *join); extern char *irc_join_remove_channel (struct t_irc_server *server, const char *join, const char *channel_name); extern void irc_join_remove_channel_from_autojoin (struct t_irc_server *server, const char *channel_name); extern void irc_join_save_channels_to_autojoin (struct t_irc_server *server); extern char *irc_join_sort_channels (struct t_irc_server *server, const char *join); extern void irc_join_sort_autojoin (struct t_irc_server *server); #endif /* WEECHAT_PLUGIN_IRC_JOIN_H */