nn::cx::UncompressDeflate Function#include <nn/cx.h> s32 UncompressDeflate( void * pDst, size_t dstSize, const void * pSrc, size_t srcSize, void * pWork );
| Name | Description | |
|---|---|---|
| out | pDst |
Buffer where decompressed data is written. |
| in | dstSize |
Size of the buffer pointed to by pDst. |
| in | pSrc |
Buffer storing the compressed data. |
| in | srcSize |
Size of the compressed data. |
| in | pWork |
Work buffer. It requires a region equal to UNCOMPRESS_DEFLATE_WORK_SIZE bytes. |
ErrorCode value if unsuccessful. Performs deflate compression data expansion appended to the cx common header.
You can decompress data compressed with the CompressDeflate function.
CONFIDENTIAL