The ACMDM_DRIVER_ABOUT message requests an ACM driver to display its About dialog box.
The driver should return MMSYSERR_NOERROR if the operation succeeds. Otherwise it should return one of the MMSYSERR error codes defined in Mmsystem.h, or one of the ACMERR error codes defined in Msacm.h. If the driver does not provide an about box, it should return MMSYSERR_NOTSUPPORTED.
The ACM (WAVEAPI.DLL) sends the ACMDM_DRIVER_ABOUT message by calling the ACM driver's ACM_IOControl() entry point via DeviceIoControl().
An ACM driver does not have to provide an About dialog box. If it does not, it should always return MMSYSERR_NOTSUPPORTED in response to this message. The ACM provides a default About dialog box, which is displayed if the driver does not provide one.
If the driver does provide an About box, it should display it when it receives this message.
If lParam1 is -1L, the driver should not display its About dialog box. It should just return MMSYSERR_NOERROR if it provides an About box, and MMSYSERR_NOTSUPPORTED if it does not.
For more information about custom About boxes, see Providing a Custom About Box in the Windows NT DDK.