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

Hans Leidekker hans at codeweavers.com
Wed Jul 8 05:26:01 CDT 2020


From: Esme Povirk <esme at codeweavers.com>

v2: Keep properties sorted.

Signed-off-by: Gijs Vermeulen <gijsvrm at gmail.com>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
---
 dlls/wbemprox/builtin.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/dlls/wbemprox/builtin.c b/dlls/wbemprox/builtin.c
index a94d41bfc45..f055547a6b9 100644
--- a/dlls/wbemprox/builtin.c
+++ b/dlls/wbemprox/builtin.c
@@ -376,9 +376,10 @@ static const struct column col_sid[] =
 };
 static const struct column col_sounddevice[] =
 {
-    { L"Name",        CIM_STRING },
-    { L"ProductName", CIM_STRING },
-    { L"StatusInfo",  CIM_UINT16 },
+    { L"Manufacturer", CIM_STRING },
+    { L"Name",         CIM_STRING },
+    { L"ProductName",  CIM_STRING },
+    { L"StatusInfo",   CIM_UINT16 },
 };
 static const struct column col_stdregprov[] =
 {
@@ -764,6 +765,7 @@ struct record_sid
 };
 struct record_sounddevice
 {
+    const WCHAR *manufacturer;
     const WCHAR *name;
     const WCHAR *productname;
     UINT16       statusinfo;
@@ -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"The Wine Project", L"Wine Audio Device", L"Wine Audio Device", 3 /* enabled */ }
 };
 static const struct record_stdregprov data_stdregprov[] =
 {
-- 
2.20.1




More information about the wine-devel mailing list