/* vi:set et ai sw=2 sts=2 ts=2: */ /*- * Copyright (c) 2009 Jannis Pohlmann * Copyright (c) 2011 Nick Schermer * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 Library General Public License for more details. * * You should have received a copy of the GNU Library General * Public License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include #include #include G_MODULE_EXPORT void tumbler_plugin_initialize (TumblerProviderPlugin *plugin); G_MODULE_EXPORT void tumbler_plugin_shutdown (void); G_MODULE_EXPORT void tumbler_plugin_get_types (const GType **types, gint *n_types); static GType type_list[1]; void tumbler_plugin_initialize (TumblerProviderPlugin *plugin) { const gchar *mismatch; /* verify that the tumbler versions are compatible */ mismatch = tumbler_check_version (TUMBLER_MAJOR_VERSION, TUMBLER_MINOR_VERSION, TUMBLER_MICRO_VERSION); if (G_UNLIKELY (mismatch != NULL)) { g_warning (TUMBLER_WARNING_VERSION_MISMATCH, mismatch); return; } g_debug ("Initializing the Tumbler ODF Thumbnailer plugin"); /* register the types provided by this plugin */ odf_thumbnailer_register (plugin); odf_thumbnailer_provider_register (plugin); /* set up the plugin provider type list */ type_list[0] = TYPE_ODF_THUMBNAILER_PROVIDER; } void tumbler_plugin_shutdown (void) { g_debug ("Shutting down the Tumbler ODF Thumbnailer plugin"); } void tumbler_plugin_get_types (const GType **types, gint *n_types) { *types = type_list; *n_types = G_N_ELEMENTS (type_list); }