fix compiler warning about ambiguous else
[privoxy.git] / deanimate.h
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 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/deanimate.h,v $
7  *
8  * Purpose     :  Declares functions to manipulate binary images on the
9  *                fly.  High-level functions include:
10  *                  - Deanimation of GIF images
11  *
12  *                Functions declared include: gif_deanimate and buf_free.
13  *
14  *
15  * Copyright   :  Written by and Copyright (C) 2001 - 2004 by the the
16  *                SourceForge Privoxy team. http://www.privoxy.org/
17  *
18  *                Based on ideas from the Image::DeAnim Perl module by
19  *                Ken MacFarlane, <ksm+cpan@universal.dca.net>
20  *
21  *                Based on the Internet Junkbuster originally written
22  *                by and Copyright (C) 1997 Anonymous Coders and
23  *                Junkbusters Corporation.  http://www.junkbusters.com
24  *
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.
30  *
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.
36  *
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.
42  *
43  *********************************************************************/
44
45
46 /*
47  * A struct that holds a buffer, a read/write offset,
48  * and the buffer's capacity.
49  */
50 struct binbuffer
51 {
52    char *buffer;
53    size_t offset;
54    size_t size;
55 };
56
57 /*
58  * Function prototypes
59  */
60 extern int gif_deanimate(struct binbuffer *src, struct binbuffer *dst, int get_first_image);
61 extern void buf_free(struct binbuffer *buf);
62
63 /*
64  * Revision control strings from this header and associated .c file
65  */
66 extern const char deanimate_rcs[];
67 extern const char deanimate_h_rcs[];
68
69 #endif /* ndef DEANIMATE_H_INCLUDED */
70
71 /*
72   Local Variables:
73   tab-width: 3
74   end:
75 */