Module: wine Branch: master Commit: 74cf8f53f099af6b38fa0a4a91e74e192d5a657e URL: http://source.winehq.org/git/wine.git/?a=commit;h=74cf8f53f099af6b38fa0a4a91...
Author: Hans Leidekker hans@codeweavers.com Date: Fri Jun 14 10:08:24 2013 +0200
wbemprox: Implement Win32_SoundDevice.Name.
---
dlls/wbemprox/builtin.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
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[] = {