pike.git/src/modules/Gz/zlibmod.c:1:
/*\
||| This file a part of Pike, and is copyright by Fredrik Hubinette
||| Pike is distributed as GPL (General Public License)
||| See the files COPYING and DISCLAIMER for more information.
\*/
#include "global.h"
- RCSID("$Id: zlibmod.c,v 1.6 1997/03/22 21:18:38 grubba Exp $");
+ RCSID("$Id: zlibmod.c,v 1.7 1997/04/07 03:26:31 hubbe Exp $");
#include "zlib_machine.h"
#include "types.h"
#if !defined(HAVE_LIBZ) && !defined(HAVE_LIBGZ)
#undef HAVE_ZLIB_H
#endif
#ifdef HAVE_ZLIB_H
pike.git/src/modules/Gz/zlibmod.c:363: Inside #if defined(HAVE_ZLIB_H)
add_integer_constant("NO_FLUSH",Z_NO_FLUSH,0);
add_integer_constant("PARTIAL_FLUSH",Z_PARTIAL_FLUSH,0);
add_integer_constant("SYNC_FLUSH",Z_SYNC_FLUSH,0);
add_integer_constant("FINISH",Z_FINISH,0);
set_init_callback(init_gz_inflate);
set_exit_callback(exit_gz_inflate);
end_class("inflate",0);
+
+ add_integer_constant("NO_FLUSH",Z_NO_FLUSH,0);
+ add_integer_constant("PARTIAL_FLUSH",Z_PARTIAL_FLUSH,0);
+ add_integer_constant("SYNC_FLUSH",Z_SYNC_FLUSH,0);
+ add_integer_constant("FINISH",Z_FINISH,0);
+
#endif
}