nn::cx::UncompContextLZ Structurenn/cx.h struct UncompContextLZ
{
u8 * destp;
s32 destCount;
s32 forceDestCount;
s32 length;
u8 lengthFlg;
u8 flags;
u8 flagIndex;
u8 headerSize;
u8 exFormat;
};
The context for decompressing LZ77 compressed data.
| destp | u8 * | Write-destination pointer | |
|---|---|---|---|
| destCount | s32 | Remaining write size | |
| forceDestCount | s32 | Forcibly sets the size of the decompression target | |
| length | s32 | Remaining length of continuous write | |
| lengthFlg | u8 | Flag indicating length has been acquired | |
| flags | u8 | Compression flag | |
| flagIndex | u8 | Current compression flag index | |
| headerSize | u8 | Size of header being read | |
| exFormat | u8 | LZ77 extended compression option |
CONFIDENTIAL