Skip to content
Snippets Groups Projects
Commit 2e878415 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

reality fixed in accordance to manual

Rev: src/modules/Gz/zlibmod.c:1.7
parent 9861c0a6
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
||| See the files COPYING and DISCLAIMER for more information. ||| See the files COPYING and DISCLAIMER for more information.
\*/ \*/
#include "global.h" #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 "zlib_machine.h"
#include "types.h" #include "types.h"
...@@ -370,6 +370,12 @@ void pike_module_init(void) ...@@ -370,6 +370,12 @@ void pike_module_init(void)
set_exit_callback(exit_gz_inflate); set_exit_callback(exit_gz_inflate);
end_class("inflate",0); 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 #endif
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment