00001 /* 00002 /-------------------------------------------------------------------- 00003 | 00004 | $Id: tif_msrc.h,v 1.1 2004/05/21 21:02:53 maxx Exp $ 00005 | 00006 | Copyright (c) 1996-2002 Ulrich von Zadow 00007 | 00008 \-------------------------------------------------------------------- 00009 */ 00010 00013 00014 extern TIFF* TIFFOpenMem (unsigned char* pData, 00015 int FileSize, 00016 int* pCurPos); 00017 00018 00019 typedef struct 00020 { 00021 unsigned char* pData; 00022 int CurPos; 00023 int MaxFileSize; 00024 // used when open for reading 00025 int rFileSize; 00026 // not NULL when open for writing 00027 int* pFileSize; 00028 char mode[2]; 00029 } 00030 MemSrcTIFFInfo; 00031 /* 00032 /-------------------------------------------------------------------- 00033 | 00034 | $Log: tif_msrc.h,v $ 00035 | Revision 1.1 2004/05/21 21:02:53 maxx 00036 | Initial Version of vuVolume, moderatly changed to make it compile on my windows and linux machine. 00037 | 00038 | Revision 1.1 2002/11/13 01:58:22 mspindle 00039 | *** empty log message *** 00040 | 00041 | Revision 1.5 2002/02/24 13:00:43 uzadow 00042 | Documentation update; removed buggy PLFilterRotate. 00043 | 00044 | Revision 1.4 2000/01/10 23:52:59 Ulrich von Zadow 00045 | Changed formatting & removed tabs. 00046 | 00047 | Revision 1.3 1999/10/03 18:50:52 Ulrich von Zadow 00048 | Added automatic logging of changes. 00049 | 00050 | 00051 -------------------------------------------------------------------- 00052 */