From: Lutz M. <lu...@us...> - 2004-10-04 06:32:50
|
Update of /cvsroot/libexif/libexif/libexif In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11422/libexif Modified Files: exif-mem.h Log Message: 2004-10-04 Lutz Mueller <lu...@us...> * libexif/exif-mem.h: Documentation. Index: exif-mem.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-mem.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- exif-mem.h 4 Oct 2004 06:26:59 -0000 1.2 +++ exif-mem.h 4 Oct 2004 06:32:36 -0000 1.3 @@ -27,7 +27,9 @@ extern "C" { #endif /* __cplusplus */ +/* Should work like calloc: Needs to return initialized memory. */ typedef void * (* ExifMemAllocFunc) (ExifLong); + typedef void * (* ExifMemReallocFunc) (void *, ExifLong); typedef void (* ExifMemFreeFunc) (void *); |