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
11 lines
293 B
//
|
|
// infgzip.h
|
|
//
|
|
// Gzip additions to inflate
|
|
//
|
|
|
|
// decompressing
|
|
BOOL ReadGzipHeader(t_decoder_context *context);
|
|
BOOL ReadGzipFooter(t_decoder_context *context);
|
|
void DecoderInitGzipVariables(t_decoder_context *context);
|
|
ULONG GzipCRC32(ULONG crc, const BYTE *buf, ULONG len);
|