libpurple/protocols/ircv3/ircv3generategir.c

Thu, 02 Nov 2023 23:38:51 -0500

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Thu, 02 Nov 2023 23:38:51 -0500
changeset 42472
409148c5c5b7
parent 42229
605f8cba9704
child 42568
31e8c7c92e2f
permissions
-rw-r--r--

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/

#include <glib.h>

#include <gplugin-introspection.h>

int
main(int argc, char *argv[]) {
    return gplugin_introspection_introspect_plugin(&argc, &argv,
                                                   PLUGIN_FILENAME);
}

mercurial