diff options
Diffstat (limited to 'include/im_raw.h')
-rw-r--r-- | include/im_raw.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/im_raw.h b/include/im_raw.h new file mode 100644 index 0000000..073ad7d --- /dev/null +++ b/include/im_raw.h @@ -0,0 +1,34 @@ +/** \file + * \brief RAW File Format + * + * See Copyright Notice in im_lib.h + */ + +#ifndef __IM_RAW_H +#define __IM_RAW_H + +#if defined(__cplusplus) +extern "C" { +#endif + + +/** Opens a RAW image file. + * See also \ref imErrorCodes. + * + * \verbatim im.FileOpenRaw(file_name: string) -> ifile: imFile, error: number [in Lua 5] \endverbatim + * \ingroup raw */ +imFile* imFileOpenRaw(const char* file_name, int *error); + +/** Creates a RAW image file. + * See also \ref imErrorCodes. + * + * \verbatim im.FileNewRaw(file_name: string) -> ifile: imFile, error: number [in Lua 5] \endverbatim + * \ingroup raw */ +imFile* imFileNewRaw(const char* file_name, int *error); + + +#if defined(__cplusplus) +} +#endif + +#endif |