1 /* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
2 /*          EXIFPROBE - TIFF/JPEG/EXIF image file probe               */
3 /* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
4 /* Copyright (C) 2002 by Duane H. Hesser. All rights reserved.        */
5 /*                                                                    */
6 /* See the file LICENSE.EXIFPROBE for terms of use.                   */
7 /* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
8 
9 /* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
10 /* @(#) $Id: ciff.h,v 1.1 2005/05/25 16:03:03 alex Exp $" */
11 /* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
12 
13 #ifndef CIFF_INCLUDED
14 #define CIFF_INCLUDED
15 
16 /* CIFF type and locacation masks and types                           */
17 #define CIFF_TYPEMASK   0x3fff
18 #define CIFF_FORMATMASK   0x3800
19 #define CIFF_LOCATIONMASK   0xc000
20 #define CIFF_INHEAP         0x0000
21 #define CIFF_INREC          0x4000
22 
23 #define CIFFTAGWIDTH        23
24 #define CIFF_MAXLEVELS      16
25 
26 #include "ciff_datadefs.h"
27 #include "cifftags.h"
28 #include "ciff_extern.h"
29 
30 #endif /* CIFF_INCLUDED */
31