[PATCH 1/2] wbemprox: Implement Win32_SoundDevice.Manufacturer.

Gijs Vermeulen gijsvrm at gmail.com
Tue Jul 7 21:31:16 CDT 2020


From: Esme Povirk <esme at codeweavers.com>

Signed-off-by: Gijs Vermeulen <gijsvrm at gmail.com>
---
 dlls/wbemprox/builtin.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dlls/wbemprox/builtin.c b/dlls/wbemprox/builtin.c
index a94d41bfc4..957dbe53ab 100644
--- a/dlls/wbemprox/builtin.c
+++ b/dlls/wbemprox/builtin.c
@@ -379,6 +379,7 @@ static const struct column col_sounddevice[] =
     { L"Name",        CIM_STRING },
     { L"ProductName", CIM_STRING },
     { L"StatusInfo",  CIM_UINT16 },
+    { L"Manufacturer", CIM_STRING },
 };
 static const struct column col_stdregprov[] =
 {
@@ -767,6 +768,7 @@ struct record_sounddevice
     const WCHAR *name;
     const WCHAR *productname;
     UINT16       statusinfo;
+    const WCHAR *manufacturer;
 };
 struct record_stdregprov
 {
@@ -884,7 +886,7 @@ static const struct record_quickfixengineering data_quickfixengineering[] =
 };
 static const struct record_sounddevice data_sounddevice[] =
 {
-    { L"Wine Audio Device", L"Wine Audio Device", 3 /* enabled */ }
+    { L"Wine Audio Device", L"Wine Audio Device", 3 /* enabled */, L"The Wine Project" }
 };
 static const struct record_stdregprov data_stdregprov[] =
 {
-- 
2.27.0




More information about the wine-devel mailing list