Add externs to avoid multiple definitions, and then add missing definitions.
[rrq/maintain_lilo.git] / src / edit.h
1 /* edit.h  -  Bitmap file manipulation and editing
2  * 
3  * Copyright 1992-1998 Werner Almesberger
4  * Copyright 1999-2004 John Coffman
5  * Copyright 2009-2011 Joachim Wiedorn
6  * All rights reserved.
7  * 
8  * Licensed under the terms contained in the file 'COPYING'
9  * in the source directory.
10  */
11
12 #ifndef EDIT_H
13 #define EDIT_H
14
15 #include "common.h"
16 #include "bitmap.h"
17 #define semi (temp_check(CSOURCE)?"":".")
18
19 int get_std_headers(int fd,
20         BITMAPFILEHEADER *fh,
21         BITMAPHEADER *bmh,
22         BITMAPLILOHEADER *lh);
23
24
25 int put_std_bmpfile(int fd, int ifd,
26         BITMAPFILEHEADER *fh,
27         BITMAPHEADER *bmh,
28         BITMAPLILOHEADER *lh);
29         
30 void do_bitmap_edit(char *bitmap_file);
31         
32 #endif