Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
854482c3
Commit
854482c3
authored
Mar 01, 2018
by
Michael Müller
Committed by
Alexandre Julliard
Mar 01, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Add DriverDate for Win32_VideoController.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7e14d298
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
builtin.c
dlls/wbemprox/builtin.c
+7
-0
No files found.
dlls/wbemprox/builtin.c
View file @
854482c3
...
...
@@ -215,6 +215,8 @@ static const WCHAR prop_domainroleW[] =
{
'D'
,
'o'
,
'm'
,
'a'
,
'i'
,
'n'
,
'R'
,
'o'
,
'l'
,
'e'
,
0
};
static
const
WCHAR
prop_driveW
[]
=
{
'D'
,
'r'
,
'i'
,
'v'
,
'e'
,
0
};
static
const
WCHAR
prop_driverdateW
[]
=
{
'D'
,
'r'
,
'i'
,
'v'
,
'e'
,
'r'
,
'D'
,
'a'
,
't'
,
'e'
,
0
};
static
const
WCHAR
prop_drivernameW
[]
=
{
'D'
,
'r'
,
'i'
,
'v'
,
'e'
,
'r'
,
'N'
,
'a'
,
'm'
,
'e'
,
0
};
static
const
WCHAR
prop_driverversionW
[]
=
...
...
@@ -718,6 +720,7 @@ static const struct column col_videocontroller[] =
{
prop_currentverticalresW
,
CIM_UINT32
,
VT_I4
},
{
prop_descriptionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_deviceidW
,
CIM_STRING
|
COL_FLAG_KEY
},
{
prop_driverdateW
,
CIM_DATETIME
},
{
prop_driverversionW
,
CIM_STRING
},
{
prop_installeddisplaydriversW
,
CIM_STRING
},
{
prop_nameW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
...
...
@@ -819,6 +822,8 @@ static const WCHAR videocontroller_dactypeW[] =
{
'I'
,
'n'
,
't'
,
'e'
,
'g'
,
'r'
,
'a'
,
't'
,
'e'
,
'd'
,
' '
,
'R'
,
'A'
,
'M'
,
'D'
,
'A'
,
'C'
,
0
};
static
const
WCHAR
videocontroller_deviceidW
[]
=
{
'V'
,
'i'
,
'd'
,
'e'
,
'o'
,
'C'
,
'o'
,
'n'
,
't'
,
'r'
,
'o'
,
'l'
,
'l'
,
'e'
,
'r'
,
'1'
,
0
};
static
const
WCHAR
videocontroller_driverdateW
[]
=
{
'2'
,
'0'
,
'1'
,
'7'
,
'0'
,
'1'
,
'0'
,
'1'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'.'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'+'
,
'0'
,
'0'
,
'0'
,
0
};
static
const
WCHAR
videocontroller_driverversionW
[]
=
{
'1'
,
'.'
,
'0'
,
0
};
static
const
WCHAR
videocontroller_statusW
[]
=
...
...
@@ -1128,6 +1133,7 @@ struct record_videocontroller
UINT32
current_verticalres
;
const
WCHAR
*
description
;
const
WCHAR
*
device_id
;
const
WCHAR
*
driverdate
;
const
WCHAR
*
driverversion
;
const
WCHAR
*
installeddriver
;
const
WCHAR
*
name
;
...
...
@@ -3303,6 +3309,7 @@ done:
rec
->
current_verticalres
=
vres
;
rec
->
description
=
heap_strdupW
(
name
);
rec
->
device_id
=
videocontroller_deviceidW
;
rec
->
driverdate
=
videocontroller_driverdateW
;
rec
->
driverversion
=
videocontroller_driverversionW
;
rec
->
installeddriver
=
get_installeddriver
(
desc
.
VendorId
);
rec
->
name
=
heap_strdupW
(
name
);
...
...
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