1/*
2 * Copyright (C) 2013 Bastien Nocera <hadess@hadess.net>
3 *
4 * Authors: Bastien Nocera <hadess@hadess.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 */
21
22#include <gdk-pixbuf/gdk-pixbuf.h>
23
24#ifdef THUMBNAILER_RETURNS_PIXBUF
25#ifdef THUMBNAILER_RETURNS_DATA
26#error "Only one of THUMBNAILER_RETURNS_PIXBUF or THUMBNAILER_RETURNS_DATA must be set"
27#else
28GdkPixbuf * file_to_pixbuf (const char *path,
29 guint destination_size,
30 GError **error);
31#endif
32#elif THUMBNAILER_RETURNS_DATA
33char * file_to_data (const char *path,
34 gsize *ret_length,
35 GError **error);
36#else
37#error "One of THUMBNAILER_RETURNS_PIXBUF or THUMBNAILER_RETURNS_DATA must be set"
38#endif
39

source code of gtk/subprojects/gdk-pixbuf/thumbnailer/gnome-thumbnailer-skeleton.h