mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
wbemprox: Implement Win32_BaseBoard.Model and Win32_BaseBoard.Name.
This commit is contained in:
parent
e0344e1a28
commit
796d4d0ccf
1 changed files with 5 additions and 1 deletions
|
@ -253,6 +253,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 }
|
||||
};
|
||||
|
@ -506,6 +508,8 @@ static const WCHAR videocontroller_deviceidW[] =
|
|||
struct record_baseboard
|
||||
{
|
||||
const WCHAR *manufacturer;
|
||||
const WCHAR *model;
|
||||
const WCHAR *name;
|
||||
const WCHAR *serialnumber;
|
||||
const WCHAR *tag;
|
||||
};
|
||||
|
@ -697,7 +701,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[] =
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue