nn::cx::UncompressAny Function

Syntax

#include <nn/cx.h>

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

Parameters

Name Description
in srcp Compressed data address.
out destp Decompressed data address.

Return Values

None.

Description

Detects the compression format from the data header and executes the appropriate decompression process.

Because they do not have headers, LZ backward compressed files (BLZ) cannot be handled by this API. In addition, LH and LRC files that require a work buffer cannot be handled by this API.

This function results in the linkage of the decompression code for all compression types. If you are using only certain compression formats, we recommend using the decompression functions specific to those being used.

Revision History

2010/11/10
Initial version.

CONFIDENTIAL