summaryrefslogtreecommitdiff
path: root/win32/zlib/infcodes.h
diff options
context:
space:
mode:
authorSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-03-23 15:57:08 +0000
committerSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-03-23 15:57:08 +0000
commitd9b54dd318e57b22d608c10f5c44edc3ee86f4f8 (patch)
treecd7676c902b4045dbdbb43c57ced9b34ce7a1f21 /win32/zlib/infcodes.h
parent19a65e820e4f1029c9a2273c32e605c77e71550a (diff)
downloadpcsxr-d9b54dd318e57b22d608c10f5c44edc3ee86f4f8.tar.gz
windows compilation fix;
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@89535 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'win32/zlib/infcodes.h')
-rwxr-xr-xwin32/zlib/infcodes.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/win32/zlib/infcodes.h b/win32/zlib/infcodes.h
index e69de29b..46821a02 100755
--- a/win32/zlib/infcodes.h
+++ b/win32/zlib/infcodes.h
@@ -0,0 +1,27 @@
+/* infcodes.h -- header to use infcodes.c
+ * Copyright (C) 1995-2002 Mark Adler
+ * For conditions of distribution and use, see copyright notice in zlib.h
+ */
+
+/* WARNING: this file should *not* be used by applications. It is
+ part of the implementation of the compression library and is
+ subject to change. Applications should only use zlib.h.
+ */
+
+struct inflate_codes_state;
+typedef struct inflate_codes_state FAR inflate_codes_statef;
+
+extern inflate_codes_statef *inflate_codes_new OF((
+ uInt, uInt,
+ inflate_huft *, inflate_huft *,
+ z_streamp ));
+
+extern int inflate_codes OF((
+ inflate_blocks_statef *,
+ z_streamp ,
+ int));
+
+extern void inflate_codes_free OF((
+ inflate_codes_statef *,
+ z_streamp ));
+