src/bmlist.h
/* [<][>][^][v][top][bottom][index][help] */
FUNCTIONS
This source file includes following functions.
1 /*
2 * bmlist.h - a header file for bmlist.c
3 */
4 /*
5 * Copyright (C) 1997-1998 Hirotsugu Kakugawa.
6 * All rights reserved.
7 *
8 * This file is part of the VFlib Library. This library is free
9 * software; you can redistribute it and/or modify it under the terms of
10 * the GNU Library General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your
12 * option) any later version. This library is distributed in the hope
13 * that it will be useful, but WITHOUT ANY WARRANTY; without even the
14 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 #ifndef __VFLIB_BMLIST_H__
22 #define __VFLIB_BMLIST_H__
23
24 extern int vf_bitmaplist_init(VF_BITMAPLIST);
25 extern int vf_bitmaplist_put(VF_BITMAPLIST,VF_BITMAP,long,long);
26 extern VF_BITMAP vf_bitmaplist_compose(VF_BITMAPLIST);
27 extern int vf_bitmaplist_finish(VF_BITMAPLIST);
28
29 #endif /** __VFLIB_BMLIST_H__*/
30
31
32 /*EOF*/