11 lines
281 B
C
11 lines
281 B
C
|
#pragma once
|
||
|
|
||
|
void inflateInit(char* comprBuffer, char* uncomprBuffer, unsigned long uncomprBufferSize);
|
||
|
|
||
|
struct InflateOutput {
|
||
|
bool needMoreInput;
|
||
|
unsigned long numBytesWrittenToOutput;
|
||
|
};
|
||
|
|
||
|
struct InflateOutput inflateInflate(unsigned long numInputBytes, bool hasMoreBytes);
|