DocumentationOverviewBuilding ASL Documentation Library Wiki Docs Indices Browse Perforce More InfoRelease NotesWiki Site Search License Success Stories Contributors MediaDownloadPerforce Depots SupportASL SourceForge HomeMailing Lists Discussion Forums Report Bugs Suggest Features Contribute to ASL RSSShort-text newsFull-text news File releases Other Adobe ProjectsAdobe AirAdobe GIL Adobe Labs Adobe Media Gallery Adobe XMP Tamarin project (Mozilla Foundation) Other ResourcesBoostRIAForge SGI STL |
dng_tag_types.h00001 /*****************************************************************************/ 00002 // Copyright 2006 Adobe Systems Incorporated 00003 // All Rights Reserved. 00004 // 00005 // NOTICE: Adobe permits you to use, modify, and distribute this file in 00006 // accordance with the terms of the Adobe license agreement accompanying it. 00007 /*****************************************************************************/ 00008 00009 /* $Id: //mondo/workarea/stern/camera_raw/dng_sdk/source/dng_tag_types.h#2 $ */ 00010 /* $DateTime: 2006/03/19 21:45:16 $ */ 00011 /* $Change: 211775 $ */ 00012 /* $Author: stern $ */ 00013 00014 /*****************************************************************************/ 00015 00016 #ifndef __dng_tag_types__ 00017 #define __dng_tag_types__ 00018 00019 /*****************************************************************************/ 00020 00021 #include "dng_types.h" 00022 00023 /*****************************************************************************/ 00024 00025 enum 00026 { 00027 ttByte = 1, 00028 ttAscii, 00029 ttShort, 00030 ttLong, 00031 ttRational, 00032 ttSByte, 00033 ttUndefined, 00034 ttSShort, 00035 ttSLong, 00036 ttSRational, 00037 ttFloat, 00038 ttDouble, 00039 ttIFD, 00040 ttUnicode, 00041 ttComplex 00042 }; 00043 00044 /*****************************************************************************/ 00045 00046 uint32 TagTypeSize (uint32 tagType); 00047 00048 /*****************************************************************************/ 00049 00050 #endif 00051 00052 /*****************************************************************************/ |