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