rnd-19980906
[rocksndiamonds.git] / src / gifload.h
1 /***********************************************************
2 *  Rocks'n'Diamonds -- McDuffin Strikes Back!              *
3 *----------------------------------------------------------*
4 *  ©1995 Artsoft Development                               *
5 *        Holger Schemel                                    *
6 *        33659 Bielefeld-Senne                             *
7 *        Telefon: (0521) 493245                            *
8 *        eMail: aeglos@valinor.owl.de                      *
9 *               aeglos@uni-paderborn.de                    *
10 *               q99492@pbhrzx.uni-paderborn.de             *
11 *----------------------------------------------------------*
12 *  gifload.h                                               *
13 ***********************************************************/
14
15 #ifndef GIFLOAD_H
16 #define GIFLOAD_H
17
18 #ifndef MSDOS
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <X11/Xlib.h>
23 #include <X11/Xutil.h>
24
25 #define GIF_Success              0
26 #define GIF_OpenFailed          -1
27 #define GIF_ReadFailed          -2
28 #define GIF_FileInvalid         -3
29 #define GIF_NoMemory            -4
30 #define GIF_ColorFailed         -5
31
32 int Read_GIF_to_Pixmaps(Display *, Window, char *, Pixmap *, Pixmap *);
33 #endif
34
35 #endif