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 SAVEPNG_H
10 #define SAVEPNG_H
11 
12 #include "types.h"
13 
14 void savepng(const char *filename, s_screen *screen, u8 *pal);
15 
16 #endif
17 
18