nn::cx::UncompressZlib Function#include <nn/cx.h> s32 UncompressZlib( 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_ZLIB_WORK_SIZE bytes. |
ErrorCode value if unsuccessful. Decompresses deflate compressed data in zlib format.
You can decompress data compressed with the CompressZlib function.
CONFIDENTIAL