IM: im_raw.h Source File
From IM - An Imaging Tool
im_raw.h
Go to the documentation of this file.00001 /** \file 00002 * \brief RAW File Format 00003 * 00004 * See Copyright Notice in im_lib.h 00005 * $Id: im_raw.h,v 1.2 2005/12/10 00:54:39 scuri Exp $ 00006 */ 00007 00008 #ifndef __IM_RAW_H 00009 #define __IM_RAW_H 00010 00011 #if defined(__cplusplus) 00012 extern "C" { 00013 #endif 00014 00015 00016 /** Opens a RAW image file. 00017 * 00018 * \verbatim im.FileOpenRaw(file_name: string) -> ifile: imFile, error: number [in Lua 5] \endverbatim 00019 * \ingroup raw */ 00020 imFile* imFileOpenRaw(const char* file_name, int *error); 00021 00022 /** Creates a RAW image file. 00023 * 00024 * \verbatim im.FileNewRaw(file_name: string) -> ifile: imFile, error: number [in Lua 5] \endverbatim 00025 * \ingroup raw */ 00026 imFile* imFileNewRaw(const char* file_name, int *error); 00027 00028 00029 #if defined(__cplusplus) 00030 } 00031 #endif 00032 00033 #endif