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
ad60f235
Commit
ad60f235
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_OperatingSystem.ServicePackMinorVersion.
parent
3c623ef3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
builtin.c
dlls/wbemprox/builtin.c
+5
-0
No files found.
dlls/wbemprox/builtin.c
View file @
ad60f235
...
...
@@ -206,6 +206,8 @@ static const WCHAR prop_serialnumberW[] =
{
'S'
,
'e'
,
'r'
,
'i'
,
'a'
,
'l'
,
'N'
,
'u'
,
'm'
,
'b'
,
'e'
,
'r'
,
0
};
static
const
WCHAR
prop_servicepackmajorW
[]
=
{
'S'
,
'e'
,
'r'
,
'v'
,
'i'
,
'c'
,
'e'
,
'P'
,
'a'
,
'c'
,
'k'
,
'M'
,
'a'
,
'j'
,
'o'
,
'r'
,
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
prop_servicepackminorW
[]
=
{
'S'
,
'e'
,
'r'
,
'v'
,
'i'
,
'c'
,
'e'
,
'P'
,
'a'
,
'c'
,
'k'
,
'M'
,
'i'
,
'n'
,
'o'
,
'r'
,
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
prop_servicetypeW
[]
=
{
'S'
,
'e'
,
'r'
,
'v'
,
'i'
,
'c'
,
'e'
,
'T'
,
'y'
,
'p'
,
'e'
,
0
};
static
const
WCHAR
prop_startmodeW
[]
=
...
...
@@ -338,6 +340,7 @@ static const struct column col_os[] =
{
prop_osproductsuiteW
,
CIM_UINT32
,
VT_I4
},
{
prop_ostypeW
,
CIM_UINT16
,
VT_I4
},
{
prop_servicepackmajorW
,
CIM_UINT16
,
VT_I4
},
{
prop_servicepackminorW
,
CIM_UINT16
,
VT_I4
},
{
prop_suitemaskW
,
CIM_UINT32
,
VT_I4
},
{
prop_systemdirectoryW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_versionW
,
CIM_STRING
}
...
...
@@ -584,6 +587,7 @@ struct record_operatingsystem
UINT32
osproductsuite
;
UINT16
ostype
;
UINT16
servicepackmajor
;
UINT16
servicepackminor
;
UINT32
suitemask
;
const
WCHAR
*
systemdirectory
;
const
WCHAR
*
version
;
...
...
@@ -1804,6 +1808,7 @@ static enum fill_status fill_os( struct table *table, const struct expr *cond )
rec
->
osproductsuite
=
2461140
;
/* Windows XP Professional */
rec
->
ostype
=
18
;
/* WINNT */
rec
->
servicepackmajor
=
3
;
rec
->
servicepackminor
=
0
;
rec
->
suitemask
=
272
;
/* Single User + Terminal */
rec
->
systemdirectory
=
get_systemdirectory
();
rec
->
version
=
os_versionW
;
...
...
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