summaryrefslogtreecommitdiff
path: root/tmxcopy/zlibutils.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmxcopy/zlibutils.h')
-rw-r--r--tmxcopy/zlibutils.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/tmxcopy/zlibutils.h b/tmxcopy/zlibutils.h
new file mode 100644
index 0000000..300c72a
--- /dev/null
+++ b/tmxcopy/zlibutils.h
@@ -0,0 +1,11 @@
+int
+inflateMemory(unsigned char *in, unsigned int inLength,
+ unsigned char *&out, unsigned int &outLength);
+
+int
+inflateMemory(unsigned char *in, unsigned int inLength,
+ unsigned char *&out);
+
+int
+compressMemory(unsigned char *in, unsigned int inLength,
+ unsigned char *&out, unsigned int &outLength);