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 BITMAP_H
10 #define BITMAP_H
11 
12 
13 s_bitmap * allocbitmap(int width, int height, int format);
14 void freebitmap(s_bitmap*);
15 void getbitmap(int x, int y, int width, int height, s_bitmap *bitmap, s_screen *screen);
16 void putbitmap(int, int, s_bitmap*, s_screen*);
17 void clipbitmap(s_bitmap*,int *,int *,int *,int *);
18 void flipbitmap(s_bitmap *);
19 
20 #endif
21 
22