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
3986a6cd
Commit
3986a6cd
authored
Jan 07, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Implement Win32_VideoController::VideoProcessor.
parent
112027a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
builtin.c
dlls/wbemprox/builtin.c
+6
-1
No files found.
dlls/wbemprox/builtin.c
View file @
3986a6cd
...
...
@@ -283,6 +283,8 @@ static const WCHAR prop_varianttypeW[] =
{
'V'
,
'a'
,
'r'
,
'i'
,
'a'
,
'n'
,
't'
,
'T'
,
'y'
,
'p'
,
'e'
,
0
};
static
const
WCHAR
prop_versionW
[]
=
{
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
prop_videoprocessorW
[]
=
{
'V'
,
'i'
,
'd'
,
'e'
,
'o'
,
'P'
,
'r'
,
'o'
,
'c'
,
'e'
,
's'
,
's'
,
'o'
,
'r'
,
0
};
static
const
WCHAR
prop_volumenameW
[]
=
{
'V'
,
'o'
,
'l'
,
'u'
,
'm'
,
'e'
,
'N'
,
'a'
,
'm'
,
'e'
,
0
};
static
const
WCHAR
prop_volumeserialnumberW
[]
=
...
...
@@ -518,7 +520,8 @@ static const struct column col_videocontroller[] =
{
prop_descriptionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_deviceidW
,
CIM_STRING
|
COL_FLAG_KEY
},
{
prop_nameW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_pnpdeviceidW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
}
{
prop_pnpdeviceidW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_videoprocessorW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
}
};
static
const
WCHAR
baseboard_manufacturerW
[]
=
...
...
@@ -834,6 +837,7 @@ struct record_videocontroller
const
WCHAR
*
device_id
;
const
WCHAR
*
name
;
const
WCHAR
*
pnpdevice_id
;
const
WCHAR
*
videoprocessor
;
};
#include "poppack.h"
...
...
@@ -2417,6 +2421,7 @@ done:
rec
->
device_id
=
videocontroller_deviceidW
;
rec
->
name
=
heap_strdupW
(
name
);
rec
->
pnpdevice_id
=
get_pnpdeviceid
(
&
desc
);
rec
->
videoprocessor
=
heap_strdupW
(
name
);
if
(
!
match_row
(
table
,
row
,
cond
,
&
status
))
free_row_values
(
table
,
row
);
else
row
++
;
...
...
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