Added a comments about future development directions.

This commit is contained in:
Andrey Kiselev 2006-10-12 14:49:09 +00:00
parent 24939d361e
commit c92f74ccc1
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $Id: tif_dir.h,v 1.29 2006-04-04 02:00:08 joris Exp $ */
/* $Id: tif_dir.h,v 1.30 2006-10-12 14:49:09 dron Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@ -67,7 +67,7 @@ typedef struct {
tstrile_t td_stripsperimage;
tstrile_t td_nstrips; /* size of offset & bytecount arrays */
toff_t* td_stripoffset;
toff_t* td_stripbytecount;
toff_t* td_stripbytecount; /* FIXME: it should be tsize_t array */
int td_stripbytecountsorted; /* is the bytecount array sorted ascending? */
uint16 td_nsubifd;
uint32* td_subifd;

View File

@ -1,4 +1,4 @@
/* $Id: tiffiop.h,v 1.50 2006-07-28 09:57:51 dron Exp $ */
/* $Id: tiffiop.h,v 1.51 2006-10-12 14:49:09 dron Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@ -170,7 +170,8 @@ struct tiff {
tsize_t tif_rawcc; /* bytes unread from raw buffer */
/* memory-mapped file support */
tidata_t tif_base; /* base of mapped file */
toff_t tif_size; /* size of mapped file region (bytes) */
toff_t tif_size; /* size of mapped file region (bytes)
FIXME: it should be tsize_t */
TIFFMapFileProc tif_mapproc; /* map file method */
TIFFUnmapFileProc tif_unmapproc;/* unmap file method */
/* input/output callback methods */