fixed dummy compilation of pa_win_wasapi.cpp using MinGW(GCC) compilers by adding missing Avrt type
This commit is contained in:
parent
bb8331b47d
commit
885ae2d3f3
1 changed files with 10 additions and 0 deletions
|
|
@ -58,6 +58,16 @@
|
||||||
#undef INITGUID
|
#undef INITGUID
|
||||||
#endif
|
#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_util.h"
|
||||||
#include "pa_allocation.h"
|
#include "pa_allocation.h"
|
||||||
#include "pa_hostapi.h"
|
#include "pa_hostapi.h"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue