summaryrefslogtreecommitdiff
path: root/mpq-bios.h
diff options
context:
space:
mode:
authorpixel <pixel>2007-07-05 18:05:43 +0000
committerpixel <pixel>2007-07-05 18:05:43 +0000
commite12fcb08a14de1f5738e0162bba50cdbf87dee47 (patch)
tree48ed11b4e908a1760d0bd0ddce96c05d2a896e13 /mpq-bios.h
First import...
Diffstat (limited to 'mpq-bios.h')
-rw-r--r--mpq-bios.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/mpq-bios.h b/mpq-bios.h
new file mode 100644
index 0000000..dd3c634
--- /dev/null
+++ b/mpq-bios.h
@@ -0,0 +1,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