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

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