1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/* vi:set et ai sw=2 sts=2 ts=2: */
/*-
* Copyright (c) 2010 Jannis Pohlmann <jannis@xfce.org>
* Copyright (c) 2020, Olivier Duchateau <duchateau.olivier@gmail.com>
*
* 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 <config.h>
#endif
#include <glib.h>
#include <glib/gi18n.h>
#include <glib-object.h>
#include <tumbler/tumbler.h>
#include "gepub-thumbnailer-provider.h"
#include "gepub-thumbnailer.h"
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 (_("Version mismatch: %s"), mismatch);
return;
}
#ifdef DEBUG
g_print ("Initializing the Tumbler Gepub Thumbnailer plugin\n");
#endif
/* register the types provided by this plugin */
gepub_thumbnailer_register (plugin);
gepub_thumbnailer_provider_register (plugin);
/* set up the plugin provider type list */
type_list[0] = TYPE_GEPUB_THUMBNAILER_PROVIDER;
}
void
tumbler_plugin_shutdown (void)
{
#ifdef DEBUG
g_print ("Shutting down the Tumbler Gepub Thumbnailer plugin\n");
#endif
}
void
tumbler_plugin_get_types (const GType **types,
gint *n_types)
{
*types = type_list;
*n_types = G_N_ELEMENTS (type_list);
}
|