summaryrefslogtreecommitdiff
path: root/mpq-file.c
blob: 2fc372b775d9a6971f656ec4a8d494855a0e2a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "mpq-bios.h"
#include "mpq-file.h"

struct mpq_file_t {
    struct mpq_archive_t * mpq_a;
    int entry;
    int number_of_sectors;
    int remaining_bytes;
    char * buffer;
    int current_sector;
    uint32_t cursor;
};