Add missing tiff declarations

This commit is contained in:
manongjohn 2022-08-27 09:23:07 -04:00
parent 3ad62c174d
commit bad746b016
5 changed files with 16 additions and 14 deletions

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b1b61a0a70ce9c483991b712161664c35d931212f6e1287c5ebffba742f950e6
size 6655488
oid sha256:68baa7e7a982cfdc8add7af31dbcb2577a7669a033d0a1f8e957a9158ac89faf
size 6655326

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2ef1bfa5ef438763ec859c9938ded5c13fa8a6df36db932e1bd39d4853d21958
size 6656412
oid sha256:e2c2eb48812d07f8f07b00115696c9edb2e42c788dbde169017fa8ba6f19dfc1
size 6656810

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:36f3ad70db4891d2ae63efe49104949094441b2ffffc7b456819267c993588cb
oid sha256:c19ee867d62aed83ef1676f9089f2b9a350b13c3b468594f7f8eaedbb8f47173
size 2397504

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:180d27b6295b3901031a9d92492699b292da0705361812ae3562697f7ed05b1b
oid sha256:b66d20df9b92aaedb8043c4049f0ea392ff8e862f4a075347eba30751bc31f58
size 2134918

View file

@ -443,15 +443,17 @@ extern int TIFFRGBAImageGet(TIFFRGBAImage*, uint32*, uint32, uint32);
extern void TIFFRGBAImageEnd(TIFFRGBAImage*);
extern TIFF* TIFFOpen(const char*, const char*);
/**************************************************************************
* 64-bit to 64-bit TIFF support
**************************************************************************/
int TIFFRGBAImageBegin_64(TIFFRGBAImage *img, TIFF *tif, int stop, char emsg[1024]);
int TIFFRGBAImageGet_64(TIFFRGBAImage *img, uint64 *raster, uint32 w, uint32 h);
int TIFFReadRGBAStrip_64(TIFF *tif, uint32 row, uint64 *raster);
int TIFFReadRGBATile_64(TIFF *tif, uint32 x, uint32 y, uint64 *raster);
/**************************************************************************
* 64-bit to 64-bit TIFF support
**************************************************************************/
extern int TIFFRGBAImageBegin_64(TIFFRGBAImage *img, TIFF *tif, int stop, char emsg[1024]);
extern int TIFFRGBAImageGet_64(TIFFRGBAImage *img, uint64 *raster, uint32 w, uint32 h);
extern int TIFFReadRGBAStrip_64(TIFF *tif, uint32 row, uint64 *raster);
extern int TIFFReadRGBATile_64(TIFF *tif, uint32 x, uint32 y, uint64 *raster);
extern int TIFFReadRGBAStripExt_64(TIFF *tif, uint32 row, uint64 *raster, int stop_on_error);
extern int TIFFReadRGBATileExt_64(TIFF *tif, uint32 col, uint32 row, uint64 *raster, int stop_on_error);
# ifdef __WIN32__
extern TIFF* TIFFOpenW(const wchar_t*, const char*);
# endif /* __WIN32__ */