mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +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:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user