[11/11] wbemprox: Implement Win32_SoundDevice.Name.

Hans Leidekker hans at codeweavers.com
Fri Jun 14 03:08:24 CDT 2013


---
 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 500e6ec..d90165f 100644
--- a/dlls/wbemprox/builtin.c
+++ b/dlls/wbemprox/builtin.c
@@ -416,6 +416,7 @@ static const struct column col_service[] =
 };
 static const struct column col_sounddevice[] =
 {
+    { prop_nameW,        CIM_STRING },
     { prop_productnameW, CIM_STRING }
 };
 static const struct column col_stdregprov[] =
@@ -667,6 +668,7 @@ struct record_service
 };
 struct record_sounddevice
 {
+    const WCHAR *name;
     const WCHAR *productname;
 };
 struct record_stdregprov
@@ -736,7 +738,7 @@ static const struct record_qualifier data_qualifier[] =
 };
 static const struct record_sounddevice data_sounddevice[] =
 {
-    { sounddevice_productnameW }
+    { sounddevice_productnameW, sounddevice_productnameW }
 };
 static const struct record_stdregprov data_stdregprov[] =
 {
-- 
1.7.10.4






More information about the wine-patches mailing list