TIFFTagValue structure moved from the public tiffio.h to private tif_dir.h.
This commit is contained in:
parent
51b72a1eb9
commit
a88f534935
@ -1,4 +1,4 @@
|
||||
/* $Id: tif_dir.h,v 1.43 2007-06-26 10:30:12 joris Exp $ */
|
||||
/* $Id: tif_dir.h,v 1.44 2007-07-04 13:21:31 dron Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988-1997 Sam Leffler
|
||||
@ -30,6 +30,12 @@
|
||||
* ``Library-private'' Directory-related Definitions.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
const TIFFFieldInfo *info;
|
||||
int count;
|
||||
void *value;
|
||||
} TIFFTagValue;
|
||||
|
||||
/*
|
||||
* Internal format of a TIFF directory entry.
|
||||
*/
|
||||
@ -188,3 +194,4 @@ extern TIFFFieldInfo* _TIFFCreateAnonFieldInfo(TIFF *tif, uint32 tag,
|
||||
#endif /* _TIFFDIR_ */
|
||||
|
||||
/* vim: set ts=8 sts=8 sw=8 noet: */
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: tiffio.h,v 1.72 2007-06-28 12:43:08 joris Exp $ */
|
||||
/* $Id: tiffio.h,v 1.73 2007-07-04 13:21:32 dron Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988-1997 Sam Leffler
|
||||
@ -336,12 +336,6 @@ typedef struct _TIFFFieldInfoArray{
|
||||
const TIFFFieldInfo* fieldinfo; /* actual field info */
|
||||
} TIFFFieldInfoArray;
|
||||
|
||||
typedef struct _TIFFTagValue {
|
||||
const TIFFFieldInfo *info;
|
||||
int count;
|
||||
void *value;
|
||||
} TIFFTagValue;
|
||||
|
||||
extern void TIFFMergeFieldInfo(TIFF* tif, const TIFFFieldInfo info[], uint32 n);
|
||||
extern const TIFFFieldInfo* TIFFFindFieldInfo(TIFF*, uint32, TIFFDataType);
|
||||
extern const TIFFFieldInfo* TIFFFindFieldInfoByName(TIFF* , const char *,
|
||||
|
Loading…
Reference in New Issue
Block a user