summaryrefslogtreecommitdiff
path: root/mpq-bios.h
blob: dd3c634590c9ef95cd7974babe6cfd31a2574152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __MPQ_BIOS_H__
#define __MPQ_BIOS_H__

struct mpq_internals_t;

typedef struct {
    char * name;

    struct mpq_internals_t * mpq_i;
} mpq_archive_t;

#ifdef __cplusplus
extern "C" {
#endif

mpq_archive_t * mpqlib_open_archive(const char * fname);
mpq_archive_t * mpqlib_reopen_archive(int fd);

#ifdef __cplusplus
}
#endif

#endif