From fabd02b4bb0c1df2b65ea682b29087a1776954ed Mon Sep 17 00:00:00 2001 From: pixel Date: Mon, 9 Jul 2007 16:34:30 +0000 Subject: Adding basic file handling. --- mpq-file.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 mpq-file.h (limited to 'mpq-file.h') diff --git a/mpq-file.h b/mpq-file.h new file mode 100644 index 0000000..d94a2cf --- /dev/null +++ b/mpq-file.h @@ -0,0 +1,23 @@ +#ifndef __MPQ_FILE_H__ +#define __MPQ_FILE_H__ + +#include "inttypes.h" + +struct mpq_file_internals_t; + +typedef struct { + struct mpq_file_internals_t * mpq_i; +} mpq_file_t; + +enum mpqfile_seek_t { + MPQLIB_SEEK_SET, + MPQLIB_SEEK_CUR, + MPQLIB_SEEK_END, +}; + +mpq_file_t * mpqlib_open_file(mpq_archive_t * mpq_a, int entry); +mpq_file_t * mpqlib_open_filename(mpq_archive_t * mpq_a, const char * fname); +uint32_t mpqlib_read(mpq_file_t * mpq_f, void * buffer, uint32_t size); +uint32_t mpqlib_seek(mpq_file_t, int32_t offset, enum mpqfile_seek_t); + +#endif -- cgit v1.2.3