struct ChunkHeader
Defined in: C4Packing.h
The ChunkHeader structure contains information about a data chunk.
Definition
struct ChunkHeader
Constructor
ChunkHeader();
ChunkHeader(unsigned long type, unsigned long size);
Parameters
type |
The type identifier for the chunk. This should not be 0.
|
size |
The size of the chunk's data, in bytes. This size does not include the chunk header.
|
Data Members
unsigned long chunkType; |
The type of the data chunk.
|
unsigned long chunkSize; |
The size of the data chunk, in bytes.
|
|