Blame gdk-pixbuf/io-gdip-utils.h

Packit 979760
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
Packit 979760
/* GdkPixbuf library - Win32 GDI+ Pixbuf Loader
Packit 979760
 *
Packit 979760
 * Copyright (C) 2008 Dominic Lachowicz
Packit 979760
 * Copyright (C) 2008 Alberto Ruiz
Packit 979760
 *
Packit 979760
 * Authors: Dominic Lachowicz <domlachowicz@gmail.com>
Packit 979760
 *          Alberto Ruiz <aruiz@gnome.org>
Packit 979760
 *
Packit 979760
 * This library is free software; you can redistribute it and/or
Packit 979760
 * modify it under the terms of the GNU Lesser General Public
Packit 979760
 * License as published by the Free Software Foundation; either
Packit 979760
 * version 2 of the License, or (at your option) any later version.
Packit 979760
 *
Packit 979760
 * This library is distributed in the hope that it will be useful,
Packit 979760
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 979760
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 979760
 * Lesser General Public License for more  * You should have received a copy of the GNU Lesser General Public
Packit 979760
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
Packit 979760
 */
Packit 979760
Packit 979760
#ifndef _HAVE_IO_GDIP_UTILS_H
Packit 979760
#define _HAVE_IO_GDIP_UTILS_H
Packit 979760
Packit 979760
#include "gdk-pixbuf.h"
Packit 979760
Packit 979760
#include "io-gdip-native.h"
Packit 979760
Packit 979760
gboolean
Packit 979760
gdip_save_to_file_callback (const gchar *buf,
Packit 979760
                            gsize        count,
Packit 979760
                            GError     **error,
Packit 979760
                            gpointer     data);
Packit 979760
Packit 979760
void
Packit 979760
gdip_fill_vtable (GdkPixbufModule *module);
Packit 979760
Packit 979760
void
Packit 979760
gdip_fill_vector_vtable (GdkPixbufModule *module);
Packit 979760
Packit 979760
gboolean
Packit 979760
gdip_save_pixbuf (GdkPixbuf *pixbuf,
Packit 979760
                  const WCHAR *format,
Packit 979760
                  const EncoderParameters *encoder_params,
Packit 979760
                  GdkPixbufSaveFunc save_func,
Packit 979760
                  gpointer user_data,
Packit 979760
                  GError **error);
Packit 979760
Packit 979760
#endif