1 /*****************************************************************************/ 2 // Copyright 2006 Adobe Systems Incorporated 3 // All Rights Reserved. 4 // 5 // NOTICE: Adobe permits you to use, modify, and distribute this file in 6 // accordance with the terms of the Adobe license agreement accompanying it. 7 /*****************************************************************************/ 8 9 /* $Id: //mondo/dng_sdk_1_4/dng_sdk/source/dng_tag_types.h#1 $ */ 10 /* $DateTime: 2012/05/30 13:28:51 $ */ 11 /* $Change: 832332 $ */ 12 /* $Author: tknoll $ */ 13 14 /*****************************************************************************/ 15 16 #ifndef __dng_tag_types__ 17 #define __dng_tag_types__ 18 19 /*****************************************************************************/ 20 21 #include "dng_types.h" 22 23 /*****************************************************************************/ 24 25 enum 26 { 27 ttByte = 1, 28 ttAscii, 29 ttShort, 30 ttLong, 31 ttRational, 32 ttSByte, 33 ttUndefined, 34 ttSShort, 35 ttSLong, 36 ttSRational, 37 ttFloat, 38 ttDouble, 39 ttIFD, 40 ttUnicode, 41 ttComplex 42 }; 43 44 /*****************************************************************************/ 45 46 uint32 TagTypeSize (uint32 tagType); 47 48 /*****************************************************************************/ 49 50 #endif 51 52 /*****************************************************************************/ 53