From: Hans U. N. <hu...@us...> - 2007-06-26 02:06:15
|
Update of /cvsroot/libexif/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv4052/libexif Modified Files: exif-data.h exif-entry.h exif-utils.h Log Message: dox comment cosmetics Index: exif-utils.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-utils.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -d -r1.16 -r1.17 --- exif-utils.h 15 May 2007 18:23:28 -0000 1.16 +++ exif-utils.h 26 Jun 2007 02:06:00 -0000 1.17 @@ -39,9 +39,14 @@ typedef char * ExifAscii; typedef uint16_t ExifShort; /* 2 bytes */ typedef int16_t ExifSShort; /* 2 bytes */ typedef uint32_t ExifLong; /* 4 bytes */ + +/** EXIF Unsigned Rational */ typedef struct {ExifLong numerator; ExifLong denominator;} ExifRational; + typedef char ExifUndefined; /* 1 byte */ typedef int32_t ExifSLong; /* 4 bytes */ + +/** EXIF Signed Rational. */ typedef struct {ExifSLong numerator; ExifSLong denominator;} ExifSRational; Index: exif-data.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-data.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -d -r1.13 -r1.14 --- exif-data.h 9 May 2007 06:09:05 -0000 1.13 +++ exif-data.h 26 Jun 2007 02:06:00 -0000 1.14 @@ -100,7 +100,7 @@ ExifDataType exif_data_get_data_type (Ex void exif_data_dump (ExifData *data); void exif_data_log (ExifData *data, ExifLog *log); -/* For your convenience */ +/** convenience macro. */ #define exif_data_get_entry(d,t) \ (exif_content_get_entry(d->ifd[EXIF_IFD_0],t) ? \ exif_content_get_entry(d->ifd[EXIF_IFD_0],t) : \ Index: exif-entry.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-entry.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -d -r1.14 -r1.15 --- exif-entry.h 21 May 2007 13:53:34 -0000 1.14 +++ exif-entry.h 26 Jun 2007 02:06:00 -0000 1.15 @@ -33,7 +33,7 @@ typedef struct _ExifEntryPrivate ExifEnt #include <libexif/exif-format.h> #include <libexif/exif-mem.h> -/*! \struct _ExifEntry exif-entry.h exif/exif-entry.h */ +/*! */ struct _ExifEntry { ExifTag tag; ExifFormat format; |