1/* mnote-canon-tag.h
2 *
3 * Copyright (c) 2002 Lutz Mueller <lutz@users.sourceforge.net>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA  02110-1301  USA.
19 */
20
21#ifndef __MNOTE_CANON_TAG_H__
22#define __MNOTE_CANON_TAG_H__
23
24#include <libexif/exif-data.h>
25
26#ifdef __cplusplus
27extern "C" {
28#endif /* __cplusplus */
29
30enum _MnoteCanonTag {
31	MNOTE_CANON_TAG_UNKNOWN_0	= 0x0,
32	MNOTE_CANON_TAG_SETTINGS_1	= 0x1,
33	MNOTE_CANON_TAG_FOCAL_LENGTH	= 0x2,
34	MNOTE_CANON_TAG_UNKNOWN_3	= 0x3,
35	MNOTE_CANON_TAG_SETTINGS_2	= 0x4,
36	MNOTE_CANON_TAG_PANORAMA	= 0x5,
37	MNOTE_CANON_TAG_IMAGE_TYPE	= 0x6,
38	MNOTE_CANON_TAG_FIRMWARE	= 0x7,
39	MNOTE_CANON_TAG_IMAGE_NUMBER	= 0x8,
40	MNOTE_CANON_TAG_OWNER		= 0x9,
41	MNOTE_CANON_TAG_UNKNOWN_10	= 0xa,
42	MNOTE_CANON_TAG_SERIAL_NUMBER	= 0xc,
43	MNOTE_CANON_TAG_UNKNOWN_13	= 0xd,
44	MNOTE_CANON_TAG_CUSTOM_FUNCS	= 0xf,
45	MNOTE_CANON_TAG_COLOR_INFORMATION = 0xa0
46};
47typedef enum _MnoteCanonTag MnoteCanonTag;
48
49const char *mnote_canon_tag_get_name        (MnoteCanonTag);
50const char *mnote_canon_tag_get_name_sub    (MnoteCanonTag, unsigned int, ExifDataOption);
51const char *mnote_canon_tag_get_title       (MnoteCanonTag);
52const char *mnote_canon_tag_get_title_sub   (MnoteCanonTag, unsigned int, ExifDataOption);
53const char *mnote_canon_tag_get_description (MnoteCanonTag);
54
55#ifdef __cplusplus
56}
57#endif /* __cplusplus */
58
59#endif /* __MNOTE_CANON_TAG_H__ */
60