Biswapriyo Nath : include: Add AUDCLNT_STREAMOPTIONS_AMBISONICS in audioclient.idl.

Alexandre Julliard julliard at winehq.org
Tue Dec 15 16:21:02 CST 2020


Module: wine
Branch: master
Commit: 82bea03ff9dff19347a6d39d9ce9dd94e1a8e981
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=82bea03ff9dff19347a6d39d9ce9dd94e1a8e981

Author: Biswapriyo Nath <nathbappai at gmail.com>
Date:   Tue Dec 15 15:26:54 2020 +0530

include: Add AUDCLNT_STREAMOPTIONS_AMBISONICS in audioclient.idl.

Signed-off-by: Biswapriyo Nath <nathbappai at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/audioclient.idl | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/include/audioclient.idl b/include/audioclient.idl
index cd13be5d575..48bdbdcdcd4 100644
--- a/include/audioclient.idl
+++ b/include/audioclient.idl
@@ -113,10 +113,12 @@ interface IAudioClient : IUnknown
 
 typedef enum _AUDCLNT_STREAMOPTIONS
 {
-    AUDCLNT_STREAMOPTIONS_NONE = 0,
-    AUDCLNT_STREAMOPTIONS_RAW = 1,
-    AUDCLNT_STREAMOPTIONS_MATCH_FORMAT = 2,
+    AUDCLNT_STREAMOPTIONS_NONE = 0x0,
+    AUDCLNT_STREAMOPTIONS_RAW = 0x1,
+    AUDCLNT_STREAMOPTIONS_MATCH_FORMAT = 0x2,
+    AUDCLNT_STREAMOPTIONS_AMBISONICS = 0x4
 } AUDCLNT_STREAMOPTIONS;
+cpp_quote("DEFINE_ENUM_FLAG_OPERATORS(AUDCLNT_STREAMOPTIONS);")
 
 typedef struct _AudioClientProperties
 {




More information about the wine-cvs mailing list