1 /*
2  * OpenBOR - http://www.LavaLit.com
3  * -----------------------------------------------------------------------
4  * All rights reserved, see LICENSE in OpenBOR root for details.
5  *
6  * Copyright (c) 2004 - 2011 OpenBOR Team
7  */
8 
9 #ifndef	LOADIMAGE_H
10 #define LOADIMAGE_H
11 
12 // Blah.
13 
14 int loadscreen(char *filename, char *packfile, unsigned char *pal, int format, s_screen **screen);
15 s_bitmap * loadbitmap(char *filename, char *packfile, int format);
16 int loadimagepalette(char *filename, char *packfile, unsigned char* pal);
17 #endif
18 
19 
20