Browse Source

WASAPI audio driver compile fix on mingw

Marcelo Fernandez 7 years ago
parent
commit
3316a64e12
1 changed files with 11 additions and 0 deletions
  1. 11 0
      drivers/wasapi/audio_driver_wasapi.cpp

+ 11 - 0
drivers/wasapi/audio_driver_wasapi.cpp

@@ -37,6 +37,17 @@
 
 #include <functiondiscoverykeys.h>
 
+#ifndef PKEY_Device_FriendlyName
+
+#undef DEFINE_PROPERTYKEY
+/* clang-format off */
+#define DEFINE_PROPERTYKEY(id, a, b, c, d, e, f, g, h, i, j, k, l) \
+	const PROPERTYKEY id = { { a, b, c, { d, e, f, g, h, i, j, k, } }, l };
+/* clang-format on */
+
+DEFINE_PROPERTYKEY(PKEY_Device_FriendlyName, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, 0x20, 0x67, 0xd1, 0x46, 0xa8, 0x50, 0xe0, 14);
+#endif
+
 const CLSID CLSID_MMDeviceEnumerator = __uuidof(MMDeviceEnumerator);
 const IID IID_IMMDeviceEnumerator = __uuidof(IMMDeviceEnumerator);
 const IID IID_IAudioClient = __uuidof(IAudioClient);