Module: wine Branch: stable Commit: 13e45236674cc33245753d1ae14120d768123303 URL: http://source.winehq.org/git/wine.git/?a=commit;h=13e45236674cc33245753d1ae1...
Author: Hans Leidekker hans@codeweavers.com Date: Mon Nov 4 11:53:46 2013 +0100
wbemprox: Implement Win32_BaseBoard.Model and Win32_BaseBoard.Name.
(cherry picked from commit 796d4d0ccf780842a0f4b2e098add56df0288fac)
---
dlls/wbemprox/builtin.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dlls/wbemprox/builtin.c b/dlls/wbemprox/builtin.c index d310704..5242cf4 100644 --- a/dlls/wbemprox/builtin.c +++ b/dlls/wbemprox/builtin.c @@ -251,6 +251,8 @@ static const WCHAR prop_versionW[] = static const struct column col_baseboard[] = { { prop_manufacturerW, CIM_STRING }, + { prop_modelW, CIM_STRING }, + { prop_nameW, CIM_STRING }, { prop_serialnumberW, CIM_STRING }, { prop_tagW, CIM_STRING|COL_FLAG_KEY } }; @@ -503,6 +505,8 @@ static const WCHAR videocontroller_deviceidW[] = struct record_baseboard { const WCHAR *manufacturer; + const WCHAR *model; + const WCHAR *name; const WCHAR *serialnumber; const WCHAR *tag; }; @@ -693,7 +697,7 @@ struct record_videocontroller
static const struct record_baseboard data_baseboard[] = { - { baseboard_manufacturerW, baseboard_serialnumberW, baseboard_tagW } + { baseboard_manufacturerW, baseboard_tagW, baseboard_tagW, baseboard_serialnumberW, baseboard_tagW } }; static const struct record_bios data_bios[] = {