Thu, 02 Nov 2023 23:38:51 -0500
Add symbol visibility on IRCv3 protocol plugin
This only adds visibility to things that have `Since: 3.0.0` _and_ are not already tagged with `G_GNUC_INTERNAL`.
It also assumes that the version is the same as libpurple, but that 3.0 is the minimum instead of 2.0, so everything is `PURPLE_IRCV3_AVAILABLE_IN_ALL`.
Testing Done:
Compiled on Linux and Windows.
Bugs closed: PIDGIN-17840
Reviewed at https://reviews.imfreedom.org/r/2773/
/* * Purple - Internet Messaging Library * Copyright (C) Pidgin Developers <devel@pidgin.im> * * This program 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 2 of the License, or * (at your option) any later version. * * This program 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 this program; if not, see <https://www.gnu.org/licenses/>. */ #if !defined(PURPLE_IRCV3_GLOBAL_HEADER_INSIDE) && \ !defined(PURPLE_IRCV3_COMPILATION) # error "only <libpurple/protocols/ircv3.h> may be included directly" #endif #ifndef PURPLE_IRCV3_PARSER_H #define PURPLE_IRCV3_PARSER_H #include <glib.h> #include <glib-object.h> #include <purple.h> #include "purpleircv3messagehandlers.h" #include "purpleircv3version.h" G_BEGIN_DECLS #define PURPLE_IRCV3_TYPE_PARSER (purple_ircv3_parser_get_type()) PURPLE_IRCV3_AVAILABLE_IN_ALL G_DECLARE_FINAL_TYPE(PurpleIRCv3Parser, purple_ircv3_parser, PURPLE_IRCV3, PARSER, GObject) /** * purple_ircv3_parser_new: * * Creates a new instance. * * Since: 3.0.0 */ PURPLE_IRCV3_AVAILABLE_IN_ALL PurpleIRCv3Parser *purple_ircv3_parser_new(void); /** * purple_ircv3_parser_set_fallback_handler: (skip): * @parser: The instance. * @handler: A [func@PurpleIRCv3.MessageHandler]. * * Sets @handler to be called for any messages that @parser doesn't know how to * handle. * * Since: 3.0.0 */ PURPLE_IRCV3_AVAILABLE_IN_ALL void purple_ircv3_parser_set_fallback_handler(PurpleIRCv3Parser *parser, PurpleIRCv3MessageHandler handler); /** * purple_ircv3_parser_parse: * @parser: The instance. * @buffer: The buffer to parse. * @error: Return address for a #GError, or %NULL. * @data: (nullable): Optional data to pass to the handler. * * Parses @buffer with @parser. * * Returns: %TRUE if the buffer was parsed correctly or %FALSE with @error set. * * Since: 3.0.0 */ PURPLE_IRCV3_AVAILABLE_IN_ALL gboolean purple_ircv3_parser_parse(PurpleIRCv3Parser *parser, const gchar *buffer, GError **error, gpointer data); /** * purple_ircv3_parser_add_handler: * @parser: The instance. * @command: The command string. * @handler: (scope forever): The handler to call. * * Calls @handler every time @parser finds the command named @command. * * Since: 3.0.0 */ PURPLE_IRCV3_AVAILABLE_IN_ALL void purple_ircv3_parser_add_handler(PurpleIRCv3Parser *parser, const char *command, PurpleIRCv3MessageHandler handler); /** * purple_ircv3_parser_add_handlers: * @parser: The instance. * @handler: (scope forever): The handler to call when the command is received. * @...: A %NULL terminated list of string command names. * * Like [method@Parser.add_handler] but allows you to add multiple commands at * once that share a handler. * * Since: 3.0.0 */ PURPLE_IRCV3_AVAILABLE_IN_ALL void purple_ircv3_parser_add_handlers(PurpleIRCv3Parser *parser, PurpleIRCv3MessageHandler handler, ...) G_GNUC_NULL_TERMINATED; /** * purple_ircv3_parser_add_default_handlers: * @parser: The instance. * * Adds all of the default handlers to @parser. * * Since: 3.0.0 */ PURPLE_IRCV3_AVAILABLE_IN_ALL void purple_ircv3_parser_add_default_handlers(PurpleIRCv3Parser *parser); G_END_DECLS #endif /* PURPLE_IRCV3_PARSER_H */