CXUncompressLZ

C Specification

#include <revolution/cx.h>

void CXUncompressLZ( const void* srcp, void* destp );

Arguments

srcp Source address where the LZ77 compressed data is stored.
destp Destination address for decompression.

Return Values

None.

Description

This function decompresses LZ77 compressed data and writes the data to the specified region of memory. The source address must be aligned to a 4-byte boundary.

To perform streaming uncompression of data, use the CXReadUncompLZ function.

See Also

CXUncompressHuffman, CXUncompressRL, CXUnfilterDiff, CXReadUncompLZ, CXCompressLZ

Revision History

07/06/2006 Initial version.


CONFIDENTIAL