comparison src/format_nikon.h @ 51:276ea4c98d33

Sat Jun 4 22:24:00 2005 John Ellis <johne@verizon.net> * exif.[ch]: Use glib provided data types and byte order functions for consistency with rest of application. Made several more functions available in the header. Use MakerNote parsing from format_raw.c. * format_canon.[ch]: Changes to match exif.h and format_raw.h. * format_fuji.[ch]: Add support for Fuji EXIF MakerNote. * format_nikon.[ch]: New files, add support for Nikon EXIF MakerNote. * format_raw.[ch]: Add EXIF MakerNote parser functions to gather all camera formats here (similar to existing raw format list). * src/Makefile.am: Add format_nikon.[ch]. ##### Note: GQview CVS on sourceforge is not always up to date, please use ##### ##### an offical release when making enhancements and translation updates. #####
author gqview
date Sun, 05 Jun 2005 02:48:54 +0000
parents
children 00843150f7c8
comparison
equal deleted inserted replaced
50:3b83fb81afc4 51:276ea4c98d33
1 /*
2 * GQView
3 * (C) 2005 John Ellis
4 *
5 * This software is released under the GNU General Public License (GNU GPL).
6 * Please read the included file COPYING for more information.
7 * This software comes with no warranty of any kind, use at your own risk!
8 */
9
10 #ifndef __FORMAT_NIKON_H
11 #define __FORMAT_NIKON_H
12
13
14 #include "exif.h"
15
16
17 gint format_nikon_makernote(ExifData *exif, unsigned char *tiff, guint offset,
18 guint size, ExifByteOrder byte_order);
19
20 #define FORMAT_EXIF_NIKON { FORMAT_EXIF_MATCH_MAKERNOTE, "Nikon\x00", 6, format_nikon_makernote }, \
21 { FORMAT_EXIF_MATCH_MAKE, "NIKON", 5, format_nikon_makernote }
22
23
24 #endif
25