1 #ifndef DEANIMATE_H_INCLUDED
2 #define DEANIMATE_H_INCLUDED
3 #define DEANIMATE_H_VERSION "$Id: deanimate.h,v 1.14 2011/09/04 11:10:56 fabiankeil Exp $"
4 /*********************************************************************
6 * File : $Source: /cvsroot/ijbswa/current/deanimate.h,v $
8 * Purpose : Declares functions to manipulate binary images on the
9 * fly. High-level functions include:
10 * - Deanimation of GIF images
12 * Functions declared include: gif_deanimate and buf_free.
15 * Copyright : Written by and Copyright (C) 2001 - 2004 by the the
16 * SourceForge Privoxy team. http://www.privoxy.org/
18 * Based on ideas from the Image::DeAnim Perl module by
19 * Ken MacFarlane, <ksm+cpan@universal.dca.net>
21 * Based on the Internet Junkbuster originally written
22 * by and Copyright (C) 1997 Anonymous Coders and
23 * Junkbusters Corporation. http://www.junkbusters.com
25 * This program is free software; you can redistribute it
26 * and/or modify it under the terms of the GNU General
27 * Public License as published by the Free Software
28 * Foundation; either version 2 of the License, or (at
29 * your option) any later version.
31 * This program is distributed in the hope that it will
32 * be useful, but WITHOUT ANY WARRANTY; without even the
33 * implied warranty of MERCHANTABILITY or FITNESS FOR A
34 * PARTICULAR PURPOSE. See the GNU General Public
35 * License for more details.
37 * The GNU General Public License should be included with
38 * this file. If not, you can view it at
39 * http://www.gnu.org/copyleft/gpl.html
40 * or write to the Free Software Foundation, Inc., 59
41 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
43 *********************************************************************/
47 * A struct that holds a buffer, a read/write offset,
48 * and the buffer's capacity.
60 extern int gif_deanimate(struct binbuffer *src, struct binbuffer *dst, int get_first_image);
61 extern void buf_free(struct binbuffer *buf);
64 * Revision control strings from this header and associated .c file
66 extern const char deanimate_rcs[];
67 extern const char deanimate_h_rcs[];
69 #endif /* ndef DEANIMATE_H_INCLUDED */