1 /*
2  * OpenBOR - http://www.LavaLit.com
3  * -----------------------------------------------------------------------
4  * Licensed under the BSD license, see LICENSE in OpenBOR root for details.
5  *
6  * Copyright (c) 2004 - 2011 OpenBOR Team
7  */
8 
9 #ifndef PNGDEC_H
10 #define PNGDEC_H
11 
12 s_screen *pngToScreen(const void *data);
13 
14 #ifdef SDL
15 #include "SDL.h"
16 SDL_Surface *pngToSurface(const void *data);
17 #endif
18 
19 #endif
20 
21