mirror of https://github.com/tongzx/nt5src
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.
31 lines
630 B
31 lines
630 B
/*
|
|
* decapi.h
|
|
*
|
|
* Decoder API definitions
|
|
*/
|
|
|
|
bool LZX_DecodeInit(
|
|
t_decoder_context *context,
|
|
long compression_window_size,
|
|
PFNALLOC pfnma,
|
|
PFNFREE pfnmf,
|
|
PFNOPEN pfnopen,
|
|
PFNREAD pfnread,
|
|
PFNWRITE pfnwrite,
|
|
PFNCLOSE pfnclose,
|
|
PFNSEEK pfnseek
|
|
);
|
|
|
|
void LZX_DecodeFree(t_decoder_context *context);
|
|
|
|
void LZX_DecodeNewGroup(t_decoder_context *context);
|
|
|
|
int LZX_Decode(
|
|
t_decoder_context *context,
|
|
long bytes_to_decode,
|
|
byte * compressed_input_buffer,
|
|
long compressed_input_size,
|
|
byte * uncompressed_output_buffer,
|
|
long uncompressed_output_size,
|
|
long * bytes_decoded
|
|
);
|