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.1 2005/04/02 22:07:00 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 * \ingroup raw */ 00018 imFile* imFileOpenRaw(const char* file_name, int *error); 00019 00020 /** Creates a RAW image file. 00021 * \ingroup raw */ 00022 imFile* imFileNewRaw(const char* file_name, int *error); 00023 00024 00025 #if defined(__cplusplus) 00026 } 00027 #endif 00028 00029 #endif