blob: 53b514ec5b0bba46bcd9ef12eedf63459f562710 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __MPQ_FILE_H__
#define __MPQ_FILE_H__
#include "inttypes.h"
struct mpq_file_t;
enum mpqlib_file_seek_t {
MPQLIB_SEEK_SET,
MPQLIB_SEEK_CUR,
MPQLIB_SEEK_END,
};
struct mpq_file_t * mpqlib_open_file(struct mpq_archive_t * mpq_a, int entry);
struct mpq_file_t * mpqlib_open_filename(struct mpq_archive_t * mpq_a, const char * fname);
uint32_t mpqlib_read(struct mpq_file_t * mpq_f, void * buffer, uint32_t size);
uint32_t mpqlib_seek(struct mpq_file_t * mpq_f, int32_t offset, enum mpqlib_file_seek_t);
#endif
|