#include <revolution/cx.h>
typedef struct { u32 compParam :4; u32 compType :4; u32 destSize :24; } CXCompressionHeader;
This is the compressed data's header structure. It can be obtained from the first 4 bytes of the compressed data using the CXGetCompressionHeader function.
| compParam | Stores the compression parameters for the given compression format. |
| compType | The compression type. For details about types, see CXGetCompressionType.html. |
| destSize | The data size after uncompression. This is the same value obtained by CXGetUncompressedSize. |
CXGetCompressionType, CXGetUncompressedSize
07/06/2006 Initial version.
CONFIDENTIAL