Commit d5d4c192 authored by Hao Peng's avatar Hao Peng Committed by Alexandre Julliard

wbemprox: Implement Win32_BaseBoard.Version.

parent c0020b3a
...@@ -311,7 +311,8 @@ static const struct column col_baseboard[] = ...@@ -311,7 +311,8 @@ static const struct column col_baseboard[] =
{ prop_nameW, CIM_STRING }, { prop_nameW, CIM_STRING },
{ prop_productW, CIM_STRING }, { prop_productW, CIM_STRING },
{ prop_serialnumberW, CIM_STRING }, { prop_serialnumberW, CIM_STRING },
{ prop_tagW, CIM_STRING|COL_FLAG_KEY } { prop_tagW, CIM_STRING|COL_FLAG_KEY },
{ prop_versionW, CIM_STRING }
}; };
static const struct column col_bios[] = static const struct column col_bios[] =
{ {
...@@ -552,6 +553,8 @@ static const WCHAR baseboard_serialnumberW[] = ...@@ -552,6 +553,8 @@ static const WCHAR baseboard_serialnumberW[] =
{'N','o','n','e',0}; {'N','o','n','e',0};
static const WCHAR baseboard_tagW[] = static const WCHAR baseboard_tagW[] =
{'B','a','s','e',' ','B','o','a','r','d',0}; {'B','a','s','e',' ','B','o','a','r','d',0};
static const WCHAR baseboard_versionW[] =
{'1','.','0',0};
static const WCHAR bios_descriptionW[] = static const WCHAR bios_descriptionW[] =
{'D','e','f','a','u','l','t',' ','S','y','s','t','e','m',' ','B','I','O','S',0}; {'D','e','f','a','u','l','t',' ','S','y','s','t','e','m',' ','B','I','O','S',0};
static const WCHAR bios_manufacturerW[] = static const WCHAR bios_manufacturerW[] =
...@@ -644,6 +647,7 @@ struct record_baseboard ...@@ -644,6 +647,7 @@ struct record_baseboard
const WCHAR *product; const WCHAR *product;
const WCHAR *serialnumber; const WCHAR *serialnumber;
const WCHAR *tag; const WCHAR *tag;
const WCHAR *version;
}; };
struct record_bios struct record_bios
{ {
...@@ -881,7 +885,7 @@ struct record_videocontroller ...@@ -881,7 +885,7 @@ struct record_videocontroller
static const struct record_baseboard data_baseboard[] = static const struct record_baseboard data_baseboard[] =
{ {
{ baseboard_manufacturerW, baseboard_tagW, baseboard_tagW, baseboard_tagW, baseboard_serialnumberW, baseboard_tagW } { baseboard_manufacturerW, baseboard_tagW, baseboard_tagW, baseboard_tagW, baseboard_serialnumberW, baseboard_versionW }
}; };
static const struct record_bios data_bios[] = static const struct record_bios data_bios[] =
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment