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 */
00006
00007 #ifndef __IM_RAW_H
00008 #define __IM_RAW_H
00009
00010 #if defined(__cplusplus)
00011 extern "C" {
00012 #endif
00013
00014
00015 /** Opens a RAW image file.
00016 * See also \ref imErrorCodes.
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 * See also \ref imErrorCodes.
00024 *
00025 * \verbatim im.FileNewRaw(file_name: string) -> ifile: imFile, error: number [in Lua 5] \endverbatim
00026 * \ingroup raw */
00027 imFile* imFileNewRaw(const char* file_name, int *error);
00028
00029
00030 #if defined(__cplusplus)
00031 }
00032 #endif
00033
00034 #endif