summaryrefslogtreecommitdiff
path: root/mpq-file.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpq-file.c')
-rw-r--r--mpq-file.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/mpq-file.c b/mpq-file.c
new file mode 100644
index 0000000..27cc9f2
--- /dev/null
+++ b/mpq-file.c
@@ -0,0 +1,12 @@
+#include "mpq-bios.h"
+#include "mpq-file.h"
+
+struct mpq_file_internals_t {
+ mpq_archive_t * mpq_a;
+ int entry;
+ int number_of_sectors;
+ int remaining_bytes;
+ char * buffer;
+ int current_sector;
+ uint32_t cursor;
+};