rnd-19970921-src
[rocksndiamonds.git] / src / gfxloader.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 *  gfxloader.h                                             *
13 ***********************************************************/
14
15 #ifndef GFXLOADER_H
16 #define GFXLOADER_H
17
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <X11/Xlib.h>
22 #include <X11/Xutil.h>
23
24 #define GIF_Success              0
25 #define GIF_OpenFailed          -1
26 #define GIF_ReadFailed          -2
27 #define GIF_FileInvalid         -3
28 #define GIF_NoMemory            -4
29 #define GIF_ColorFailed         -5
30
31 #define ILBM_Success             0
32 #define ILBM_OpenFailed         -1
33 #define ILBM_ReadFailed         -2
34 #define ILBM_FileInvalid        -3
35 #define ILBM_NoMemory           -4
36 #define ILBM_ColorFailed        -5
37
38 int Read_ILBM_to_Bitmap(Display *, char *, Pixmap *);
39 int Read_GIF_to_Bitmap(Display *, char *, Pixmap *);
40 int Read_GIF_to_Pixmap(Display *, char *, Pixmap *);
41 int Read_GIF_to_XImage(Display *, char *, XImage **);
42
43 #endif