2003-10-26 Lutz Mueller <lutz@users.sourceforge.net>
[platform/upstream/libexif.git] / libexif / exif-mnote-data-priv.h
1 /* exif-mnote-data-priv.h
2  *
3  * Copyright © 2003 Lutz Müller <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., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __EXIF_MNOTE_DATA_PRIV_H__
22 #define __EXIF_MNOTE_DATA_PRIV_H__
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif /* __cplusplus */
27
28 #include <libexif/exif-mnote-data.h>
29
30 typedef struct _ExifMnoteDataMethods ExifMnoteDataMethods;
31 struct _ExifMnoteDataMethods {
32
33         /* Live cycle */
34         void (* free) (ExifMnoteData *);
35
36         /* Modification */
37         void (* save) (ExifMnoteData *, unsigned char **, unsigned int *);
38         void (* load) (ExifMnoteData *, const unsigned char *, unsigned int);
39
40         /* Query */
41         unsigned int (* count)           (ExifMnoteData *);
42         const char * (* get_name)        (ExifMnoteData *, unsigned int);
43         const char * (* get_title)       (ExifMnoteData *, unsigned int);
44         const char * (* get_description) (ExifMnoteData *, unsigned int);
45               char * (* get_value)       (ExifMnoteData *, unsigned int);
46 };
47
48 typedef struct _ExifMnoteDataPriv ExifMnoteDataPriv;
49
50 struct _ExifMnoteData 
51 {
52         ExifMnoteDataMethods methods;
53
54         ExifMnoteDataPriv *priv;
55 };
56
57 void exif_mnote_data_construct (ExifMnoteData *);
58
59 #ifdef __cplusplus
60 }
61 #endif /* __cplusplus */
62
63 #endif /* __EXIF_MNOTE_PRIV_H__ */