mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:33:10 +00:00
- Rename function to fix linking errors on x64
svn path=/trunk/; revision=40607
This commit is contained in:
parent
352fae1736
commit
b8ab2e557c
1 changed files with 2 additions and 2 deletions
|
@ -556,7 +556,7 @@ WdmAudCapabilities(
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
WdmAudClose(
|
WdmAudIoctlClose(
|
||||||
IN PDEVICE_OBJECT DeviceObject,
|
IN PDEVICE_OBJECT DeviceObject,
|
||||||
IN PIRP Irp,
|
IN PIRP Irp,
|
||||||
IN PWDMAUD_DEVICE_INFO DeviceInfo,
|
IN PWDMAUD_DEVICE_INFO DeviceInfo,
|
||||||
|
@ -630,7 +630,7 @@ WdmAudDeviceControl(
|
||||||
case IOCTL_GETCAPABILITIES:
|
case IOCTL_GETCAPABILITIES:
|
||||||
return WdmAudCapabilities(DeviceObject, Irp, DeviceInfo, ClientInfo);
|
return WdmAudCapabilities(DeviceObject, Irp, DeviceInfo, ClientInfo);
|
||||||
case IOCTL_CLOSE_WDMAUD:
|
case IOCTL_CLOSE_WDMAUD:
|
||||||
return WdmAudClose(DeviceObject, Irp, DeviceInfo, ClientInfo);
|
return WdmAudIoctlClose(DeviceObject, Irp, DeviceInfo, ClientInfo);
|
||||||
case IOCTL_GETDEVID:
|
case IOCTL_GETDEVID:
|
||||||
case IOCTL_GETVOLUME:
|
case IOCTL_GETVOLUME:
|
||||||
case IOCTL_SETVOLUME:
|
case IOCTL_SETVOLUME:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue