This structure contains information about a chunk in a RIFF file. It is used on the mmioCreateChunk, mmioDescend, and mmioAscend functions calls.
typedef struct _MMCKINFO { FOURCC ckid; /* Chunk ID (FOURCC). */ ULONG ckSize; /* Chunk size (bytes). */ FOURCC fccType; /* FOURCC type (if ckid RIFF or LIST). */ ULONG ulDataOffset; /* File offset of data portion of chunk. */ ULONG ulFlags; /* MMIO_DIRTY (if new chunk). */ } MMCKINFO; typedef MMCKINFO * PMMCKINFO ;
Related Datatypes