gplugin/gplugin

Run clang-format to apply header changes
bugfix/clang-format-tweaks
2020-02-26, Richard Laager
2afe9b045950
Parents c96214250615
Children 72df99d32fa7
Run clang-format to apply header changes
  • +1 -1
    gplugin-gtk-viewer/gplugin-gtk-viewer-window.h
  • +1 -1
    gplugin-gtk/gplugin-gtk-plugin-info.h
  • +1 -1
    gplugin-gtk/gplugin-gtk-store.h
  • +1 -1
    gplugin-gtk/gplugin-gtk-view.h
  • +1 -1
    gplugin/gplugin-core.c
  • +1 -1
    gplugin/gplugin-core.h
  • +1 -1
    gplugin/gplugin-loader-tests.h
  • +1 -1
    gplugin/gplugin-loader.h
  • +1 -1
    gplugin/gplugin-manager.h
  • +1 -1
    gplugin/gplugin-native-loader.h
  • +1 -1
    gplugin/gplugin-options.c
  • +1 -1
    gplugin/gplugin-plugin-info.h
  • +1 -1
    gplugin/gplugin-plugin.h
  • +1 -1
    gplugin/gplugin-private.h
  • +1 -1
    gplugin/tests/bad-plugins/query-error.c
  • +1 -1
    gplugin/tests/bind-local/bind-local.c
  • +1 -1
    gplugin/tests/dynamic-type/dynamic-test.h
  • +1 -1
    gplugin/tests/dynamic-type/dynamic-type-provider.c
  • +1 -1
    gplugin/tests/dynamic-type/dynamic-type-user.c
  • +1 -1
    gplugin/tests/id-collision/id-collision1.c
  • +1 -1
    gplugin/tests/id-collision/id-collision2.c
  • +1 -1
    gplugin/tests/load-on-query-fail/load-on-query-fail.c
  • +1 -1
    gplugin/tests/load-on-query-pass/load-on-query-pass.c
  • +1 -1
    gplugin/tests/plugins/basic-plugin.c
  • +1 -1
    gplugin/tests/plugins/broken-dependent-plugin.c
  • +1 -1
    gplugin/tests/plugins/dependent-plugin.c
  • +1 -1
    gplugin/tests/plugins/load-exception.c
  • +1 -1
    gplugin/tests/plugins/load-failed.c
  • +1 -1
    gplugin/tests/plugins/unload-failed.c
  • +1 -1
    gplugin/tests/test-bind-local.c
  • +1 -1
    gplugin/tests/test-dynamic-type.c
  • +1 -1
    gplugin/tests/test-id-collision.c
  • +1 -1
    gplugin/tests/test-load-on-query.c
  • +1 -1
    gplugin/tests/test-native-loader.c
  • +1 -1
    gplugin/tests/test-plugin-info.c
  • +1 -1
    gplugin/tests/test-unresolved-symbol.c
  • +1 -1
    gplugin/tests/test-versioned-dependencies.c
  • +1 -1
    gplugin/tests/unresolved-symbol/unresolved-symbol.c
  • +1 -1
    gplugin/tests/versioned-dependencies/bar.c
  • +1 -1
    gplugin/tests/versioned-dependencies/baz.c
  • +1 -1
    gplugin/tests/versioned-dependencies/exact1.c
  • +1 -1
    gplugin/tests/versioned-dependencies/exact2.c
  • +1 -1
    gplugin/tests/versioned-dependencies/fez.c
  • +1 -1
    gplugin/tests/versioned-dependencies/greater-equal.c
  • +1 -1
    gplugin/tests/versioned-dependencies/greater.c
  • +1 -1
    gplugin/tests/versioned-dependencies/less-equal.c
  • +1 -1
    gplugin/tests/versioned-dependencies/less.c
  • +1 -1
    gplugin/tests/versioned-dependencies/no-version.c
  • +1 -1
    gplugin/tests/versioned-dependencies/super-dependent.c
  • +1 -1
    lua/gplugin-lua-core.c
  • +1 -1
    lua/gplugin-lua-loader.h
  • +1 -1
    lua/gplugin-lua-plugin.h
  • +1 -1
    perl/gplugin-perl-core.c
  • +1 -1
    perl/gplugin-perl-loader.h
  • +1 -1
    perl/gplugin-perl-plugin.h
  • +1 -1
    python/gplugin-python3-core.c
  • +1 -1
    python/gplugin-python3-loader.h
  • +1 -1
    python/gplugin-python3-plugin.h
  • +1 -1
    tcc/gplugin-tcc-core.c
  • +1 -1
    tcc/gplugin-tcc-loader.h
  • +1 -1
    tcc/gplugin-tcc-plugin.h
  • +1 -1
    tcc/tests/plugins/basic-plugin.c
  • +1 -1
    tcc/tests/plugins/dependent.c
  • +1 -1
    tcc/tests/plugins/load-exception.c
  • +1 -1
    tcc/tests/plugins/load-failed.c
  • +1 -1
    tcc/tests/plugins/unload-failed.c
  • --- a/gplugin-gtk-viewer/gplugin-gtk-viewer-window.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin-gtk-viewer/gplugin-gtk-viewer-window.h Wed Feb 26 13:56:30 2020 -0600
    @@ -18,8 +18,8 @@
    #ifndef GPLUGIN_GTK_VIEWER_WINDOW_H
    #define GPLUGIN_GTK_VIEWER_WINDOW_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    #include <gtk/gtk.h>
    --- a/gplugin-gtk/gplugin-gtk-plugin-info.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin-gtk/gplugin-gtk-plugin-info.h Wed Feb 26 13:56:30 2020 -0600
    @@ -23,8 +23,8 @@
    #ifndef GPLUGIN_GTK_PLUGIN_INFO_H
    #define GPLUGIN_GTK_PLUGIN_INFO_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    #include <gtk/gtk.h>
    --- a/gplugin-gtk/gplugin-gtk-store.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin-gtk/gplugin-gtk-store.h Wed Feb 26 13:56:30 2020 -0600
    @@ -23,8 +23,8 @@
    #ifndef GPLUGIN_GTK_STORE_H
    #define GPLUGIN_GTK_STORE_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    #include <gtk/gtk.h>
    --- a/gplugin-gtk/gplugin-gtk-view.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin-gtk/gplugin-gtk-view.h Wed Feb 26 13:56:30 2020 -0600
    @@ -23,8 +23,8 @@
    #ifndef GPLUGIN_GTK_VIEW_H
    #define GPLUGIN_GTK_VIEW_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    #include <gtk/gtk.h>
    --- a/gplugin/gplugin-core.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/gplugin-core.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    #include <glib/gi18n-lib.h>
    #include <gplugin/gplugin-core.h>
    --- a/gplugin/gplugin-core.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/gplugin-core.h Wed Feb 26 13:56:30 2020 -0600
    @@ -22,8 +22,8 @@
    #ifndef GPLUGIN_CORE_H
    #define GPLUGIN_CORE_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    #define GPLUGIN_DOMAIN (g_quark_from_static_string("gplugin"))
    --- a/gplugin/gplugin-loader-tests.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/gplugin-loader-tests.h Wed Feb 26 13:56:30 2020 -0600
    @@ -18,8 +18,8 @@
    #ifndef GPLUGIN_LOADER_TESTS_H
    #define GPLUGIN_LOADER_TESTS_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    G_BEGIN_DECLS
    --- a/gplugin/gplugin-loader.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/gplugin-loader.h Wed Feb 26 13:56:30 2020 -0600
    @@ -22,8 +22,8 @@
    #ifndef GPLUGIN_LOADER_H
    #define GPLUGIN_LOADER_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    G_BEGIN_DECLS
    --- a/gplugin/gplugin-manager.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/gplugin-manager.h Wed Feb 26 13:56:30 2020 -0600
    @@ -22,8 +22,8 @@
    #ifndef GPLUGIN_MANAGER_H
    #define GPLUGIN_MANAGER_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    #include <gplugin/gplugin-plugin.h>
    --- a/gplugin/gplugin-native-loader.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/gplugin-native-loader.h Wed Feb 26 13:56:30 2020 -0600
    @@ -22,8 +22,8 @@
    #ifndef GPLUGIN_NATIVE_LOADER_H
    #define GPLUGIN_NATIVE_LOADER_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    #include <gplugin/gplugin-loader.h>
    --- a/gplugin/gplugin-options.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/gplugin-options.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    #include <glib/gi18n-lib.h>
    #include <gplugin/gplugin-options.h>
    --- a/gplugin/gplugin-plugin-info.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/gplugin-plugin-info.h Wed Feb 26 13:56:30 2020 -0600
    @@ -22,8 +22,8 @@
    #ifndef GPLUGIN_PLUGIN_INFO_H
    #define GPLUGIN_PLUGIN_INFO_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    G_BEGIN_DECLS
    --- a/gplugin/gplugin-plugin.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/gplugin-plugin.h Wed Feb 26 13:56:30 2020 -0600
    @@ -22,8 +22,8 @@
    #ifndef GPLUGIN_PLUGIN_H
    #define GPLUGIN_PLUGIN_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    /* clang-format off */
    typedef enum /*< prefix=GPLUGIN_PLUGIN_STATE,underscore_name=GPLUGIN_PLUGIN_STATE >*/ {
    --- a/gplugin/gplugin-private.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/gplugin-private.h Wed Feb 26 13:56:30 2020 -0600
    @@ -22,8 +22,8 @@
    #ifndef GPLUGIN_PRIVATE_H
    #define GPLUGIN_PRIVATE_H
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    #include <gplugin/gplugin-plugin-info.h>
    #include <gplugin/gplugin-plugin.h>
    --- a/gplugin/tests/bad-plugins/query-error.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/bad-plugins/query-error.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/bind-local/bind-local.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/bind-local/bind-local.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/dynamic-type/dynamic-test.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/dynamic-type/dynamic-test.h Wed Feb 26 13:56:30 2020 -0600
    @@ -34,8 +34,8 @@
    typedef struct _DynamicTest DynamicTest;
    typedef struct _DynamicTestClass DynamicTestClass;
    +#include <glib.h>
    #include <glib-object.h>
    -#include <glib.h>
    struct _DynamicTest {
    GObject gparent;
    --- a/gplugin/tests/dynamic-type/dynamic-type-provider.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/dynamic-type/dynamic-type-provider.c Wed Feb 26 13:56:30 2020 -0600
    @@ -16,8 +16,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include "dynamic-test.h"
    --- a/gplugin/tests/dynamic-type/dynamic-type-user.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/dynamic-type/dynamic-type-user.c Wed Feb 26 13:56:30 2020 -0600
    @@ -16,8 +16,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include "dynamic-test.h"
    --- a/gplugin/tests/id-collision/id-collision1.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/id-collision/id-collision1.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/id-collision/id-collision2.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/id-collision/id-collision2.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/load-on-query-fail/load-on-query-fail.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/load-on-query-fail/load-on-query-fail.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/load-on-query-pass/load-on-query-pass.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/load-on-query-pass/load-on-query-pass.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/plugins/basic-plugin.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/plugins/basic-plugin.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/plugins/broken-dependent-plugin.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/plugins/broken-dependent-plugin.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/plugins/dependent-plugin.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/plugins/dependent-plugin.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/plugins/load-exception.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/plugins/load-exception.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/plugins/load-failed.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/plugins/load-failed.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/plugins/unload-failed.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/plugins/unload-failed.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/test-bind-local.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/test-bind-local.c Wed Feb 26 13:56:30 2020 -0600
    @@ -17,8 +17,8 @@
    #include <stdlib.h>
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <glib.h>
    --- a/gplugin/tests/test-dynamic-type.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/test-dynamic-type.c Wed Feb 26 13:56:30 2020 -0600
    @@ -17,8 +17,8 @@
    #include <stdlib.h>
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <glib.h>
    --- a/gplugin/tests/test-id-collision.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/test-id-collision.c Wed Feb 26 13:56:30 2020 -0600
    @@ -17,8 +17,8 @@
    #include <stdlib.h>
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <glib.h>
    --- a/gplugin/tests/test-load-on-query.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/test-load-on-query.c Wed Feb 26 13:56:30 2020 -0600
    @@ -17,8 +17,8 @@
    #include <stdlib.h>
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <glib.h>
    --- a/gplugin/tests/test-native-loader.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/test-native-loader.c Wed Feb 26 13:56:30 2020 -0600
    @@ -17,8 +17,8 @@
    #include <stdlib.h>
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <glib.h>
    --- a/gplugin/tests/test-plugin-info.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/test-plugin-info.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <glib.h>
    --- a/gplugin/tests/test-unresolved-symbol.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/test-unresolved-symbol.c Wed Feb 26 13:56:30 2020 -0600
    @@ -17,8 +17,8 @@
    #include <stdlib.h>
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <glib.h>
    --- a/gplugin/tests/test-versioned-dependencies.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/test-versioned-dependencies.c Wed Feb 26 13:56:30 2020 -0600
    @@ -17,8 +17,8 @@
    #include <stdlib.h>
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <glib.h>
    --- a/gplugin/tests/unresolved-symbol/unresolved-symbol.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/unresolved-symbol/unresolved-symbol.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    void some_unresolved_symbol(void);
    --- a/gplugin/tests/versioned-dependencies/bar.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/bar.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/versioned-dependencies/baz.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/baz.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/versioned-dependencies/exact1.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/exact1.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/versioned-dependencies/exact2.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/exact2.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/versioned-dependencies/fez.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/fez.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/versioned-dependencies/greater-equal.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/greater-equal.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/versioned-dependencies/greater.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/greater.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/versioned-dependencies/less-equal.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/less-equal.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/versioned-dependencies/less.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/less.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/versioned-dependencies/no-version.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/no-version.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/gplugin/tests/versioned-dependencies/super-dependent.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/gplugin/tests/versioned-dependencies/super-dependent.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/lua/gplugin-lua-core.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/lua/gplugin-lua-core.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include "gplugin-lua-loader.h"
    #include "gplugin-lua-plugin.h"
    --- a/lua/gplugin-lua-loader.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/lua/gplugin-lua-loader.h Wed Feb 26 13:56:30 2020 -0600
    @@ -18,8 +18,8 @@
    #ifndef GPLUGIN_LUA_LOADER_H
    #define GPLUGIN_LUA_LOADER_H
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_BEGIN_DECLS
    --- a/lua/gplugin-lua-plugin.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/lua/gplugin-lua-plugin.h Wed Feb 26 13:56:30 2020 -0600
    @@ -18,8 +18,8 @@
    #ifndef GPLUGIN_LUA_PLUGIN_H
    #define GPLUGIN_LUA_PLUGIN_H
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <lua.h>
    --- a/perl/gplugin-perl-core.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/perl/gplugin-perl-core.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include "gplugin-perl-loader.h"
    #include "gplugin-perl-plugin.h"
    --- a/perl/gplugin-perl-loader.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/perl/gplugin-perl-loader.h Wed Feb 26 13:56:30 2020 -0600
    @@ -18,8 +18,8 @@
    #ifndef GPLUGIN_PERL_LOADER_H
    #define GPLUGIN_PERL_LOADER_H
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_BEGIN_DECLS
    --- a/perl/gplugin-perl-plugin.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/perl/gplugin-perl-plugin.h Wed Feb 26 13:56:30 2020 -0600
    @@ -18,8 +18,8 @@
    #ifndef GPLUGIN_PERL_PLUGIN_H
    #define GPLUGIN_PERL_PLUGIN_H
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #define PERL_NO_GET_CONTEXT
    #include <gperl.h>
    --- a/python/gplugin-python3-core.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/python/gplugin-python3-core.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <glib/gi18n-lib.h>
    --- a/python/gplugin-python3-loader.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/python/gplugin-python3-loader.h Wed Feb 26 13:56:30 2020 -0600
    @@ -18,8 +18,8 @@
    #ifndef GPLUGIN_PYTHON3_LOADER_H
    #define GPLUGIN_PYTHON3_LOADER_H
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_BEGIN_DECLS
    --- a/python/gplugin-python3-plugin.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/python/gplugin-python3-plugin.h Wed Feb 26 13:56:30 2020 -0600
    @@ -18,8 +18,8 @@
    #ifndef GPLUGIN_PYTHON3_PLUGIN_H
    #define GPLUGIN_PYTHON3_PLUGIN_H
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_BEGIN_DECLS
    --- a/tcc/gplugin-tcc-core.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/tcc/gplugin-tcc-core.c Wed Feb 26 13:56:30 2020 -0600
    @@ -15,8 +15,8 @@
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <glib/gi18n-lib.h>
    --- a/tcc/gplugin-tcc-loader.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/tcc/gplugin-tcc-loader.h Wed Feb 26 13:56:30 2020 -0600
    @@ -17,8 +17,8 @@
    #ifndef GPLUGIN_TCC_LOADER_H
    #define GPLUGIN_TCC_LOADER_H
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_BEGIN_DECLS
    --- a/tcc/gplugin-tcc-plugin.h Wed Feb 26 13:55:23 2020 -0600
    +++ b/tcc/gplugin-tcc-plugin.h Wed Feb 26 13:56:30 2020 -0600
    @@ -17,8 +17,8 @@
    #ifndef GPLUGIN_TCC_PLUGIN_H
    #define GPLUGIN_TCC_PLUGIN_H
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    #include <libtcc.h>
    --- a/tcc/tests/plugins/basic-plugin.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/tcc/tests/plugins/basic-plugin.c Wed Feb 26 13:56:30 2020 -0600
    @@ -14,8 +14,8 @@
    * You should have received a copy of the GNU Lesser General Public
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/tcc/tests/plugins/dependent.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/tcc/tests/plugins/dependent.c Wed Feb 26 13:56:30 2020 -0600
    @@ -14,8 +14,8 @@
    * You should have received a copy of the GNU Lesser General Public
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/tcc/tests/plugins/load-exception.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/tcc/tests/plugins/load-exception.c Wed Feb 26 13:56:30 2020 -0600
    @@ -14,8 +14,8 @@
    * You should have received a copy of the GNU Lesser General Public
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/tcc/tests/plugins/load-failed.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/tcc/tests/plugins/load-failed.c Wed Feb 26 13:56:30 2020 -0600
    @@ -14,8 +14,8 @@
    * You should have received a copy of the GNU Lesser General Public
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)
    --- a/tcc/tests/plugins/unload-failed.c Wed Feb 26 13:55:23 2020 -0600
    +++ b/tcc/tests/plugins/unload-failed.c Wed Feb 26 13:56:30 2020 -0600
    @@ -14,8 +14,8 @@
    * You should have received a copy of the GNU Lesser General Public
    * License along with this library; if not, see <http://www.gnu.org/licenses/>.
    */
    +#include <gplugin.h>
    #include <gplugin-native.h>
    -#include <gplugin.h>
    G_MODULE_EXPORT GPluginPluginInfo *
    gplugin_query(G_GNUC_UNUSED GError **error)