Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d5d4c192
Commit
d5d4c192
authored
Jan 22, 2015
by
Hao Peng
Committed by
Alexandre Julliard
Jan 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Implement Win32_BaseBoard.Version.
parent
c0020b3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
builtin.c
dlls/wbemprox/builtin.c
+6
-2
No files found.
dlls/wbemprox/builtin.c
View file @
d5d4c192
...
@@ -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_
tag
W
}
{
baseboard_manufacturerW
,
baseboard_tagW
,
baseboard_tagW
,
baseboard_tagW
,
baseboard_serialnumberW
,
baseboard_
version
W
}
};
};
static
const
struct
record_bios
data_bios
[]
=
static
const
struct
record_bios
data_bios
[]
=
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment