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
293 B

  1. //
  2. // infgzip.h
  3. //
  4. // Gzip additions to inflate
  5. //
  6. // decompressing
  7. BOOL ReadGzipHeader(t_decoder_context *context);
  8. BOOL ReadGzipFooter(t_decoder_context *context);
  9. void DecoderInitGzipVariables(t_decoder_context *context);
  10. ULONG GzipCRC32(ULONG crc, const BYTE *buf, ULONG len);