Remove commented out code.
[geeqie.git] / src / format_fuji.h
1 /*
2  * Geeqie
3  * (C) 2005 John Ellis
4  * Copyright (C) 2008 - 2012 The Geeqie Team
5  *
6  *  Authors:
7  *    Original version 2005 Lars Ellenberg, base on dcraw by David coffin.
8  *
9  * This software is released under the GNU General Public License (GNU GPL).
10  * Please read the included file COPYING for more information.
11  * This software comes with no warranty of any kind, use at your own risk!
12  */
13
14 #ifndef __FORMAT_FUJI_H
15 #define __FORMAT_FUJI_H
16
17
18 #include "exif-int.h"
19
20
21 gboolean format_fuji_raw(guchar *data, const guint len,
22                          guint *image_offset, guint *exif_offset);
23
24
25 #define FORMAT_RAW_FUJI { "raf", \
26                           FORMAT_RAW_MATCH_MAGIC, 0, "FUJIFILM", 8, \
27                           FORMAT_RAW_EXIF_JPEG, NULL, \
28                           "Fuji raw", format_fuji_raw }
29
30
31 gboolean format_fuji_makernote(ExifData *exif, guchar *tiff, guint offset,
32                                guint size, ExifByteOrder bo);
33
34 #define FORMAT_EXIF_FUJI { FORMAT_EXIF_MATCH_MAKERNOTE, "FUJIFILM", 8, "Fujifilm", format_fuji_makernote }
35
36
37
38 #endif
39 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */