From 74cf8f53f099af6b38fa0a4a91e74e192d5a657e Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Fri, 14 Jun 2013 10:08:24 +0200 Subject: [PATCH] wbemprox: Implement Win32_SoundDevice.Name. --- 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 500e6ec0764..d90165f9e2b 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[] = {