mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[WDMAUD.DRV]
- Correct function declaration of WdmAudOpenSoundDeviceByLegacy and remove a duplicate (wut..). Should fix build. svn path=/trunk/; revision=51042
This commit is contained in:
parent
9009dd37ad
commit
b16c59e50e
2 changed files with 7 additions and 5 deletions
|
@ -250,7 +250,9 @@ WdmAudGetCapabilitiesByLegacy(
|
|||
}
|
||||
|
||||
MMRESULT
|
||||
WdmAudOpenSoundDeviceByLegacy()
|
||||
WdmAudOpenSoundDeviceByLegacy(
|
||||
IN PSOUND_DEVICE SoundDevice,
|
||||
OUT PVOID *Handle)
|
||||
{
|
||||
/* Only open this if it's not already open */
|
||||
if ( KernelHandle == INVALID_HANDLE_VALUE )
|
||||
|
|
|
@ -26,9 +26,6 @@ WdmAudGetWaveInCount(VOID);
|
|||
ULONG
|
||||
WdmAudGetMixerCount(VOID);
|
||||
|
||||
MMRESULT
|
||||
WdmAudOpenSoundDeviceByLegacy(VOID);
|
||||
|
||||
MMRESULT
|
||||
WdmAudGetNumWdmDevsByMMixer(
|
||||
IN MMDEVICE_TYPE DeviceType,
|
||||
|
@ -165,7 +162,10 @@ WdmAudGetCapabilitiesByLegacy(
|
|||
IN DWORD CapabilitiesSize);
|
||||
|
||||
MMRESULT
|
||||
WdmAudOpenSoundDeviceByLegacy(VOID);
|
||||
WdmAudOpenSoundDeviceByLegacy(
|
||||
IN PSOUND_DEVICE SoundDevice,
|
||||
OUT PVOID *Handle
|
||||
);
|
||||
|
||||
MMRESULT
|
||||
WdmAudCloseSoundDeviceByLegacy(
|
||||
|
|
Loading…
Reference in a new issue