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