From: Dan F. <dfa...@us...> - 2009-01-03 08:19:27
|
Update of /cvsroot/libexif/libexif/libexif In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20514/libexif Modified Files: exif-content.h exif-mnote-data.h Log Message: Updated Doxygen comments Index: exif-mnote-data.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-mnote-data.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -d -r1.8 -r1.9 --- exif-mnote-data.h 27 Nov 2008 06:54:45 -0000 1.8 +++ exif-mnote-data.h 3 Jan 2009 08:19:20 -0000 1.9 @@ -77,15 +77,16 @@ unsigned int exif_mnote_data_get_id * containing only US-ASCII alphanumeric characters. * * \param[in] d MakerNote data - * \param[in] n tag number within the namespace of this type of MakerNote + * \param[in] n index of the entry within the MakerNote data * \return textual name of the tag */ const char *exif_mnote_data_get_name (ExifMnoteData *d, unsigned int n); /*! Returns textual title of the given MakerNote tag. + * The title is a short, localized textual description of the tag. * * \param[in] d MakerNote data - * \param[in] n tag number within the namespace of this type of MakerNote + * \param[in] n index of the entry within the MakerNote data * \return textual name of the tag */ const char *exif_mnote_data_get_title (ExifMnoteData *d, unsigned int n); @@ -93,7 +94,7 @@ const char *exif_mnote_data_get_title /*! Returns verbose textual description of the given MakerNote tag. * * \param[in] d MakerNote data - * \param[in] n tag number within the namespace of this type of MakerNote + * \param[in] n index of the entry within the MakerNote data * \return textual description of the tag */ const char *exif_mnote_data_get_description (ExifMnoteData *d, unsigned int n); @@ -105,7 +106,7 @@ const char *exif_mnote_data_get_descrip * of the camera. * * \param[in] d MakerNote data - * \param[in] n tag number within the namespace of this type of MakerNote + * \param[in] n index of the entry within the MakerNote data * \param[out] val buffer in which to store value * \param[in] maxlen length of the buffer val * \return val pointer, or NULL on error Index: exif-content.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-content.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -d -r1.18 -r1.19 --- exif-content.h 23 Dec 2008 08:33:55 -0000 1.18 +++ exif-content.h 3 Jan 2009 08:19:20 -0000 1.19 @@ -72,6 +72,8 @@ void exif_content_add_entry ( void exif_content_remove_entry (ExifContent *c, ExifEntry *e); /*! Return the #ExifEntry in this IFD corresponding to the given tag. + * This is a pointer into a member of the #ExifContent array and must NOT be + * freed by the caller. * * \param[in] content EXIF content for an IFD * \param[in] tag EXIF tag to return |