From: Jan P. <pa...@us...> - 2006-02-19 11:08:44
|
Update of /cvsroot/libexif/libexif/libexif In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv983 Modified Files: exif-utils.h Log Message: 1) ExifByte is now explicitly unsigned char: needed when dumping unknown entries of the EXIF_FORMAT_BYTE type, such as XML Packet, in exif_entry_get_value 2) Added ExifSByte as signed char. Index: exif-utils.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-utils.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -p -d -r1.13 -r1.14 --- exif-utils.h 10 Mar 2005 20:48:21 -0000 1.13 +++ exif-utils.h 19 Feb 2006 11:08:35 -0000 1.14 @@ -33,7 +33,8 @@ extern "C" { /* If these definitions don't work for you, please let us fix the * macro generating _stdint.h */ -typedef char ExifByte; /* 1 byte */ +typedef unsigned char ExifByte; /* 1 byte */ +typedef signed char ExifSByte; /* 1 byte */ typedef char * ExifAscii; typedef uint16_t ExifShort; /* 2 bytes */ typedef int16_t ExifSShort; /* 2 bytes */ |