fixed dummy compilation of pa_win_wasapi.cpp using MinGW(GCC) compilers by adding missing Avrt type

This commit is contained in:
dmitrykos 2010-03-02 12:17:03 +00:00
commit 885ae2d3f3

View file

@ -58,6 +58,16 @@
#undef INITGUID
#endif
#ifndef _AVRT_ //<< fix MinGW dummy compile by defining missing type: AVRT_PRIORITY
typedef enum _AVRT_PRIORITY
{
AVRT_PRIORITY_LOW = -1,
AVRT_PRIORITY_NORMAL,
AVRT_PRIORITY_HIGH,
AVRT_PRIORITY_CRITICAL
} AVRT_PRIORITY, *PAVRT_PRIORITY;
#endif
#include "pa_util.h"
#include "pa_allocation.h"
#include "pa_hostapi.h"