Fix compilation issue with ALSA 0.5.
This commit is contained in:
parent
f902d2965f
commit
092f7dd352
|
@ -3202,7 +3202,7 @@ DWORD WINAPI ALSA_widMessage(UINT wDevID, UINT wMsg, DWORD dwUser,
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef HAVE_ALSA
|
#if !(defined(HAVE_ALSA) && ((SND_LIB_MAJOR == 0 && SND_LIB_MINOR >= 9) || SND_LIB_MAJOR >= 1))
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* widMessage (WINEALSA.@)
|
* widMessage (WINEALSA.@)
|
||||||
|
@ -3214,6 +3214,10 @@ DWORD WINAPI ALSA_widMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
|
||||||
return MMSYSERR_NOTENABLED;
|
return MMSYSERR_NOTENABLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef HAVE_ALSA
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* wodMessage (WINEALSA.@)
|
* wodMessage (WINEALSA.@)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue