Blender V2.61 - r43446
|
00001 00004 /* 00005 * Cineon image file format library routines. 00006 * 00007 * Copyright 2006 Joseph Eagar (joeedh@gmail.com) 00008 * 00009 * This program is free software; you can redistribute it and/or modify it 00010 * under the terms of the GNU General Public License as published by the Free 00011 * Software Foundation; either version 2 of the License, or (at your option) 00012 * any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, but 00015 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 00016 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00017 * for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program; if not, write to the Free Software 00021 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00022 * 00023 */ 00024 00025 #ifndef _LOGMEMFILE_H 00026 #define _LOGMEMFILE_H 00027 00028 int logimage_fseek(void* logfile, intptr_t offsett, int origin); 00029 int logimage_fwrite(void *buffer, unsigned int size, unsigned int count, void *logfile); 00030 int logimage_fread(void *buffer, unsigned int size, unsigned int count, void *logfile); 00031 00032 #endif /* _LOGMEMFILE_H */