wasapi: Fixed compilation with MinGW (W64) when targeting 32-bit platform

This commit is contained in:
dmitrykos 2021-04-15 11:39:02 +03:00
commit c6178e8592

View file

@ -168,12 +168,14 @@
#include <oleidl.h>
#include <objidl.h>
#else
typedef struct _BYTE_BLOB
{
unsigned long clSize;
unsigned char abData[ 1 ];
} BYTE_BLOB;
typedef /* [unique] */ __RPC_unique_pointer BYTE_BLOB *UP_BYTE_BLOB;
#ifndef _BLOB_DEFINED
typedef struct _BYTE_BLOB
{
unsigned long clSize;
unsigned char abData[ 1 ];
} BYTE_BLOB;
typedef /* [unique] */ __RPC_unique_pointer BYTE_BLOB *UP_BYTE_BLOB;
#endif
typedef LONGLONG REFERENCE_TIME;
#define NONAMELESSUNION
#endif