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
11 lines
350 B
//
|
|
// defgzip.h
|
|
//
|
|
// Gzip additions to deflate
|
|
//
|
|
|
|
// compressing
|
|
void WriteGzipHeader(t_encoder_context *context, int compression_level);
|
|
void WriteGzipFooter(t_encoder_context *context);
|
|
void GzipCRCmemcpy(t_encoder_context *context, BYTE *dest, const BYTE *src, ULONG count);
|
|
void EncoderInitGzipVariables(t_encoder_context *context);
|