4.1.10.2.17 COMPRESSED_DATA
The COMPRESSED_DATA structure defines a sequence of compressed (if cbDecompressedSize ≠ cbCompressedSize) or uncompressed (if cbDecompressedSize = cbCompressedSize) bytes.
-
typedef struct { ULONG cbDecompressedSize; ULONG cbCompressedSize; BYTE data[]; } COMPRESSED_DATA;
cbDecompressedSize: Decompressed size of data.
cbCompressedSize: Compressed size of data.
data: Data stream. The data is padded with zeros, if necessary, so that the block ends on a double word boundary.