Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 14 of file control.c.
Referenced by WdmAudDeviceControl().
{ if (DeviceInfo->DeviceType == MIXER_DEVICE_TYPE) { return WdmAudControlOpenMixer(DeviceObject, Irp, DeviceInfo, ClientInfo); } if (DeviceInfo->DeviceType == WAVE_OUT_DEVICE_TYPE || DeviceInfo->DeviceType == WAVE_IN_DEVICE_TYPE) { return WdmAudControlOpenWave(DeviceObject, Irp, DeviceInfo, ClientInfo); } if (DeviceInfo->DeviceType == MIDI_OUT_DEVICE_TYPE || DeviceInfo->DeviceType == MIDI_IN_DEVICE_TYPE) { return WdmAudControlOpenMidi(DeviceObject, Irp, DeviceInfo, ClientInfo); } return SetIrpIoStatus(Irp, STATUS_NOT_SUPPORTED, sizeof(WDMAUD_DEVICE_INFO)); }