From: Dan F. <dfa...@us...> - 2008-12-05 07:07:21
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13825/libexif/olympus Modified Files: mnote-olympus-tag.h Log Message: Improved Doxygen documentation. Index: mnote-olympus-tag.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-tag.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -d -r1.8 -r1.9 --- mnote-olympus-tag.h 17 Feb 2008 18:31:56 -0000 1.8 +++ mnote-olympus-tag.h 5 Dec 2008 07:07:17 -0000 1.9 @@ -187,8 +187,31 @@ typedef enum _MnoteOlympusTag MnoteOlymp #define MNOTE_OLYMPUS_TAG_UNKNOWN_2 MNOTE_OLYMPUS_TAG_FOCALPLANEDIAGONAL #define MNOTE_OLYMPUS_TAG_UNKNOWN_3 MNOTE_OLYMPUS_TAG_LENSDISTORTION +/*! Return a textual name of the given tag within the Olympus-style MakerNote. + * The name is a short, unique, non-localized text string containing only + * US-ASCII alphanumeric characters. + * + * \param[in] tag Olympus-style MakerNote tag + * \return textual name of the tag, or NULL if the tag is unknown + */ const char *mnote_olympus_tag_get_name (MnoteOlympusTag tag); + +/*! Return a textual title of the given tag within the Olympus-style MakerNote. + * The title is a short, localized description of the tag. + * + * \param[in] tag Olympus-style MakerNote tag + * \return textual title of the tag, or NULL if the tag is unknown + */ const char *mnote_olympus_tag_get_title (MnoteOlympusTag tag); + +/*! Return a verbose textual description of the given tag within the + * Olympus-style MakerNote. + * The description is a verbose, localized description of the tag. + * + * \param[in] tag EXIF tag + * \param[in] ifd IFD + * \return textual description of the tag, or NULL if the tag is unknown + */ const char *mnote_olympus_tag_get_description (MnoteOlympusTag tag); #ifdef __cplusplus |