diff options
Diffstat (limited to 'tools/tmxcopy/zlibutils.h')
-rw-r--r-- | tools/tmxcopy/zlibutils.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/tmxcopy/zlibutils.h b/tools/tmxcopy/zlibutils.h new file mode 100644 index 000000000..300c72ad9 --- /dev/null +++ b/tools/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); |