Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
350 B

  1. //
  2. // defgzip.h
  3. //
  4. // Gzip additions to deflate
  5. //
  6. // compressing
  7. void WriteGzipHeader(t_encoder_context *context, int compression_level);
  8. void WriteGzipFooter(t_encoder_context *context);
  9. void GzipCRCmemcpy(t_encoder_context *context, BYTE *dest, const BYTE *src, ULONG count);
  10. void EncoderInitGzipVariables(t_encoder_context *context);