logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

TIFFClientInfo - provides a method to hand over user defined data from one routine to another

Author

       LibTIFF contributors

Description

       The  clientinfo  linked list provides a method to hand over user defined data from one routine to another
       via the internal tif storage of the libtiff library.

       TIFFGetClientInfo() returns a pointer to the data of the named entry in the clientinfo-list. If the  name
       is not found NULL is returned.

       TIFFSetClientInfo() adds or replaces an entry in the clientinfo-list with the name and the pointer to the
       data provided by the caller.

Diagnostics

       None.

Name

       TIFFClientInfo - provides a method to hand over user defined data from one routine to another

See Also

libtiff (3tiff),

Synopsis

          #include <tiffio.h>

       void*TIFFGetClientInfo(TIFF*tif,constchar*name)voidTIFFSetClientInfo(TIFF*tif,void*data,constchar*name)

See Also