dfe39e50f1590931a8aa13068a1b55de0080fa88
[rocksndiamonds.git] / src / sdl.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 *  sdl.h                                                   *
13 ***********************************************************/
14
15 #ifndef SDL_H
16 #define SDL_H
17
18 #include "SDL.h"
19 #include "IMG.h"
20
21 inline void SDLCopyArea(SDL_Surface *, SDL_Surface *,
22                         int, int, int, int, int, int);
23 inline void SDLFillRectangle(SDL_Surface *, int, int, int, int, unsigned int);
24 inline void SDLDrawSimpleLine(SDL_Surface *, int, int, int, int, unsigned int);
25
26 #endif /* SDL_H */