2018-07-31 13:18:18 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
void inflateInit(char* comprBuffer, char* uncomprBuffer, unsigned long uncomprBufferSize);
|
|
|
|
|
|
|
|
struct InflateOutput {
|
|
|
|
bool needMoreInput;
|
2018-07-31 13:38:21 +02:00
|
|
|
bool hasReachedEnd;
|
2018-07-31 13:18:18 +02:00
|
|
|
unsigned long numBytesWrittenToOutput;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct InflateOutput inflateInflate(unsigned long numInputBytes, bool hasMoreBytes);
|