fixed compile for DirectSound implementation under MSYS, missing DSSPEAKER_7POINT1_SURROUND define

This commit is contained in:
dmitrykos 2010-05-20 17:28:23 +00:00
commit b565ab5bdd

View file

@ -759,6 +759,9 @@ static PaError AddOutputDeviceInfoFromDirectSound(
case DSSPEAKER_SURROUND: count = 4; break;
case DSSPEAKER_5POINT1: count = 6; break;
case DSSPEAKER_7POINT1: count = 8; break;
#ifndef DSSPEAKER_7POINT1_SURROUND
#define DSSPEAKER_7POINT1_SURROUND 0x00000008
#endif
case DSSPEAKER_7POINT1_SURROUND: count = 8; break;
#ifndef DSSPEAKER_5POINT1_SURROUND
#define DSSPEAKER_5POINT1_SURROUND 0x00000009