Recherche d’un segment RIFF
L’exemple suivant utilise la fonction mmioDescend pour rechercher un segment « RIFF » avec un type de formulaire « WAVE » afin de vérifier que le fichier qui vient d’être ouvert est un fichier audio de forme d’onde.
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