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
f455806f
Commit
f455806f
authored
Feb 13, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Feb 13, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Implement Win32_VideoController.DriverVersion.
parent
0dba391d
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 @
f455806f
...
...
@@ -160,6 +160,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_driverversionW
[]
=
{
'D'
,
'r'
,
'i'
,
'v'
,
'e'
,
'r'
,
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
prop_drivetypeW
[]
=
{
'D'
,
'r'
,
'i'
,
'v'
,
'e'
,
'T'
,
'y'
,
'p'
,
'e'
,
0
};
static
const
WCHAR
prop_familyW
[]
=
...
...
@@ -542,6 +544,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_driverversionW
,
CIM_STRING
},
{
prop_nameW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_pnpdeviceidW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_videoprocessorW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
}
...
...
@@ -637,6 +640,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_driverversionW
[]
=
{
'1'
,
'.'
,
'0'
,
0
};
#include "pshpack1.h"
struct
record_baseboard
...
...
@@ -877,6 +882,7 @@ struct record_videocontroller
UINT32
current_verticalres
;
const
WCHAR
*
description
;
const
WCHAR
*
device_id
;
const
WCHAR
*
driverversion
;
const
WCHAR
*
name
;
const
WCHAR
*
pnpdevice_id
;
const
WCHAR
*
videoprocessor
;
...
...
@@ -2479,6 +2485,7 @@ done:
rec
->
current_verticalres
=
vres
;
rec
->
description
=
heap_strdupW
(
name
);
rec
->
device_id
=
videocontroller_deviceidW
;
rec
->
driverversion
=
videocontroller_driverversionW
;
rec
->
name
=
heap_strdupW
(
name
);
rec
->
pnpdevice_id
=
get_pnpdeviceid
(
&
desc
);
rec
->
videoprocessor
=
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