This message is used in an MMDRV_MESSAGE_PARAMS structure passed to the WAV_IOControl function to request a waveform output driver to open an instance of a specified device.
MMSYSERR_NOERROR indicates success. Otherwise, the driver returns one of the MMSYSERR or WAVEERR error values declared in the Mmsystem.h header file.
The ACM sends this message by calling the audio driver’s WAV_IOControl entry point through the DeviceIoControl function.
The driver assigns a device instance identifier and returns it in the location pointed to by dwUser. The driver receives this value as the dwUser input parameter to all other wave output driver messages.
The driver determines the number of clients that it enables to use a particular device. If a device is opened by the maximum number of clients, the driver returns MMSYSERR_ALLOCATED for subsequent open requests.
The WAVE_FORMAT_DIRECT flag is meant for use with a wave mapper. If the flag is set in dwParam2, the driver does not call the ACM to handle compression or decompression operations; the caller wants the hardware to perform these operations directly. If the hardware is not capable of performing compression or decompression operations, the driver returns MMSYSERR_NOTSUPPORTED when WAVE_FORMAT_DIRECT is set.
If the WAVE_FORMAT_QUERY flag is set in dwParam2, the driver does not open the device. Instead, the driver determines whether it supports the format specified by the lpFormat member of WAVEOPENDESC. If the driver supports the requested format, it returns MMSYSERR_NOERROR. Otherwise, the driver returns WAVERR_BADFORMAT.
If the open operation succeeds, the Wave API Manager sends the ACM a WOM_OPEN message by calling the PostThreadMessage function on the callback thread handle.