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
861f7450
Commit
861f7450
authored
Jun 14, 2013
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 14, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Implement Win32_VideoController.AdapterDACType.
parent
ad60f235
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 @
861f7450
...
...
@@ -88,6 +88,8 @@ static const WCHAR prop_acceptstopW[] =
{
'A'
,
'c'
,
'c'
,
'e'
,
'p'
,
't'
,
'S'
,
't'
,
'o'
,
'p'
,
0
};
static
const
WCHAR
prop_accessmaskW
[]
=
{
'A'
,
'c'
,
'c'
,
'e'
,
's'
,
's'
,
'M'
,
'a'
,
's'
,
'k'
,
0
};
static
const
WCHAR
prop_adapterdactypeW
[]
=
{
'A'
,
'd'
,
'a'
,
'p'
,
't'
,
'e'
,
'r'
,
'D'
,
'A'
,
'C'
,
'T'
,
'y'
,
'p'
,
'e'
,
0
};
static
const
WCHAR
prop_adapterramW
[]
=
{
'A'
,
'd'
,
'a'
,
'p'
,
't'
,
'e'
,
'r'
,
'R'
,
'A'
,
'M'
,
0
};
static
const
WCHAR
prop_adaptertypeW
[]
=
...
...
@@ -421,6 +423,7 @@ static const struct column col_stdregprov[] =
};
static
const
struct
column
col_videocontroller
[]
=
{
{
prop_adapterdactypeW
,
CIM_STRING
},
{
prop_adapterramW
,
CIM_UINT32
,
VT_I4
},
{
prop_currentbitsperpixelW
,
CIM_UINT32
},
{
prop_currenthorizontalresW
,
CIM_UINT32
},
...
...
@@ -487,6 +490,8 @@ static const WCHAR os_versionW[] =
{
'5'
,
'.'
,
'1'
,
'.'
,
'2'
,
'6'
,
'0'
,
'0'
,
0
};
static
const
WCHAR
sounddevice_productnameW
[]
=
{
'W'
,
'i'
,
'n'
,
'e'
,
' '
,
'A'
,
'u'
,
'd'
,
'i'
,
'o'
,
' '
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
0
};
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
};
...
...
@@ -668,6 +673,7 @@ struct record_stdregprov
};
struct
record_videocontroller
{
const
WCHAR
*
adapter_dactype
;
UINT32
adapter_ram
;
UINT32
current_bitsperpixel
;
UINT32
current_horizontalres
;
...
...
@@ -2032,6 +2038,7 @@ static enum fill_status fill_videocontroller( struct table *table, const struct
done:
rec
=
(
struct
record_videocontroller
*
)
table
->
data
;
rec
->
adapter_dactype
=
videocontroller_dactypeW
;
rec
->
adapter_ram
=
vidmem
;
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