RIFF 청크 검색
다음 예제에서는 mmioDescend 함수를 사용하여 양식 형식이 "WAVE"인 "RIFF" 청크를 검색하여 방금 연 파일이 파형 오디오 파일인지 확인합니다.
HMMIO hmmio;
MMCKINFO mmckinfoParent;
MMCKINFO mmckinfoSubchunk;
.
.
.
// Locate a "RIFF" chunk with a "WAVE" form type to make
// sure the file is a waveform-audio file.
mmckinfoParent.fccType = mmioFOURCC('W', 'A', 'V', 'E');
if (mmioDescend(hmmio, (LPMMCKINFO) &mmckinfoParent, NULL,
MMIO_FINDRIFF))
// The file is not a waveform-audio file.
else
// The file is a waveform-audio file