mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 08:30:21 +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
|
||||
NTAPI
|
||||
WdmAudClose(
|
||||
WdmAudIoctlClose(
|
||||
IN PDEVICE_OBJECT DeviceObject,
|
||||
IN PIRP Irp,
|
||||
IN PWDMAUD_DEVICE_INFO DeviceInfo,
|
||||
|
@ -630,7 +630,7 @@ WdmAudDeviceControl(
|
|||
case IOCTL_GETCAPABILITIES:
|
||||
return WdmAudCapabilities(DeviceObject, Irp, DeviceInfo, ClientInfo);
|
||||
case IOCTL_CLOSE_WDMAUD:
|
||||
return WdmAudClose(DeviceObject, Irp, DeviceInfo, ClientInfo);
|
||||
return WdmAudIoctlClose(DeviceObject, Irp, DeviceInfo, ClientInfo);
|
||||
case IOCTL_GETDEVID:
|
||||
case IOCTL_GETVOLUME:
|
||||
case IOCTL_SETVOLUME:
|
||||
|
|
Loading…
Reference in a new issue