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.3 2006/11/21 11:56:16 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 * See also \ref imErrorCodes.
00018 *
00019 * \verbatim im.FileOpenRaw(file_name: string) -> ifile: imFile, error: number [in Lua 5] \endverbatim
00020 * \ingroup raw */
00021 imFile* imFileOpenRaw(const char* file_name, int *error);
00022
00023 /** Creates a RAW image file.
00024 * See also \ref imErrorCodes.
00025 *
00026 * \verbatim im.FileNewRaw(file_name: string) -> ifile: imFile, error: number [in Lua 5] \endverbatim
00027 * \ingroup raw */
00028 imFile* imFileNewRaw(const char* file_name, int *error);
00029
00030
00031 #if defined(__cplusplus)
00032 }
00033 #endif
00034
00035 #endif