Ouverture d’un appareil composé à l’aide du nom de fichier
L’exemple suivant ouvre l’appareil waveform-audio en spécifiant un fichier waveform-audio nommé « TIMPANI . WAV » à l’aide de la fonction mciSendCommand .
UINT wDeviceID;
DWORD dwReturn;
MCI_OPEN_PARMS mciOpenParms;
// Opens a waveform-audio device by specifying the device and
// file name.
mciOpenParms.lpstrDeviceType = "waveaudio";
mciOpenParms.lpstrElementName = "timpani.wav";
if (dwReturn = mciSendCommand(NULL, MCI_OPEN,
MCI_OPEN_TYPE | MCI_OPEN_ELEMENT, (DWORD)(LPVOID) &mciOpenParms))
{
// Error, unable to open device.
}
// The device opened successfully; get the device ID.
wDeviceID = mciOpenParms.wDeviceID;