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
d42026af
Commit
d42026af
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 ConfigManagerErrorCode for Win32_VideoController.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3e342312
Show 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 @
d42026af
...
...
@@ -165,6 +165,8 @@ static const WCHAR prop_codesetW[] =
{
'C'
,
'o'
,
'd'
,
'e'
,
'S'
,
'e'
,
't'
,
0
};
static
const
WCHAR
prop_commandlineW
[]
=
{
'C'
,
'o'
,
'm'
,
'm'
,
'a'
,
'n'
,
'd'
,
'L'
,
'i'
,
'n'
,
'e'
,
0
};
static
const
WCHAR
prop_configmanagererrorcodeW
[]
=
{
'C'
,
'o'
,
'n'
,
'f'
,
'i'
,
'g'
,
'M'
,
'a'
,
'n'
,
'a'
,
'g'
,
'e'
,
'r'
,
'E'
,
'r'
,
'r'
,
'o'
,
'r'
,
'C'
,
'o'
,
'd'
,
'e'
,
0
};
static
const
WCHAR
prop_countrycodeW
[]
=
{
'C'
,
'o'
,
'u'
,
'n'
,
't'
,
'r'
,
'y'
,
'C'
,
'o'
,
'd'
,
'e'
,
0
};
static
const
WCHAR
prop_cpustatusW
[]
=
...
...
@@ -704,6 +706,7 @@ static const struct column col_videocontroller[] =
{
prop_adapterramW
,
CIM_UINT32
,
VT_I4
},
{
prop_availabilityW
,
CIM_UINT16
},
{
prop_captionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_configmanagererrorcodeW
,
CIM_UINT32
,
VT_I4
},
{
prop_currentbitsperpixelW
,
CIM_UINT32
,
VT_I4
},
{
prop_currenthorizontalresW
,
CIM_UINT32
,
VT_I4
},
{
prop_currentrefreshrateW
,
CIM_UINT32
,
VT_I4
},
...
...
@@ -717,7 +720,7 @@ static const struct column col_videocontroller[] =
{
prop_videoarchitectureW
,
CIM_UINT16
,
VT_I4
},
{
prop_videomemorytypeW
,
CIM_UINT16
,
VT_I4
},
{
prop_videomodedescriptionW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_videoprocessorW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
}
{
prop_videoprocessorW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
};
static
const
WCHAR
baseboard_manufacturerW
[]
=
...
...
@@ -1109,6 +1112,7 @@ struct record_videocontroller
UINT32
adapter_ram
;
UINT16
availability
;
const
WCHAR
*
caption
;
UINT32
config_errorcode
;
UINT32
current_bitsperpixel
;
UINT32
current_horizontalres
;
UINT32
current_refreshrate
;
...
...
@@ -3257,6 +3261,7 @@ done:
rec
->
adapter_dactype
=
videocontroller_dactypeW
;
rec
->
adapter_ram
=
vidmem
;
rec
->
availability
=
3
;
/* Running or Full Power */
rec
->
config_errorcode
=
0
;
/* no error */
rec
->
caption
=
heap_strdupW
(
name
);
rec
->
current_bitsperpixel
=
get_bits_per_pixel
(
&
hres
,
&
vres
);
rec
->
current_horizontalres
=
hres
;
...
...
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