linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / include / linux / zutil.h
index 6adfa9a..ee0c59c 100644 (file)
@@ -23,6 +23,18 @@ typedef unsigned long  ulg;
 
         /* common constants */
 
+#ifndef DEF_WBITS
+#  define DEF_WBITS MAX_WBITS
+#endif
+/* default windowBits for decompression. MAX_WBITS is for compression only */
+
+#if MAX_MEM_LEVEL >= 8
+#  define DEF_MEM_LEVEL 8
+#else
+#  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
+#endif
+/* default memLevel */
+
 #define STORED_BLOCK 0
 #define STATIC_TREES 1
 #define DYN_TREES    2