]>
git.saurik.com Git - wxWidgets.git/blob - src/tiff/contrib/tags/xtiffio.h
2aea724d62b1aab0fc2ab56595d57d547231e754
2 * xtiffio.h -- Public interface to Extended TIFF tags
4 * This is a template for defining a client module
5 * which supports tag extensions to the standard libtiff
6 * set. Only portions of the code marked "XXX" need to
7 * be changed to support your tag set.
9 * written by: Niles D. Ritter
18 * XXX Define your private Tag names and values here
21 /* These tags are not valid, but are provided for example */
22 #define TIFFTAG_EXAMPLE_MULTI 61234
23 #define TIFFTAG_EXAMPLE_SINGLE 61235
24 #define TIFFTAG_EXAMPLE_ASCII 61236
27 * XXX Define Printing method flags. These
28 * flags may be passed in to TIFFPrintDirectory() to
29 * indicate that those particular field values should
30 * be printed out in full, rather than just an indicator
31 * of whether they are present or not.
33 #define TIFFPRINT_MYMULTIDOUBLES 0x80000000
35 /**********************************************************************
36 * Nothing below this line should need to be changed by the user.
37 **********************************************************************/
39 #if defined(__cplusplus)
43 extern TIFF
* XTIFFOpen(const char* name
, const char* mode
);
44 extern TIFF
* XTIFFFdOpen(int fd
, const char* name
, const char* mode
);
45 extern void XTIFFClose(TIFF
*tif
);
47 #if defined(__cplusplus)
51 #endif /* __xtiffio_h */