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
f40830b4
Commit
f40830b4
authored
Jan 21, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Implement Win32_ComputerSystemProduct.IdentifyingNumber.
parent
27ba8c83
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
builtin.c
dlls/wbemprox/builtin.c
+8
-2
No files found.
dlls/wbemprox/builtin.c
View file @
f40830b4
...
...
@@ -176,6 +176,8 @@ static const WCHAR prop_idW[] =
{
'I'
,
'D'
,
0
};
static
const
WCHAR
prop_identificationcodeW
[]
=
{
'I'
,
'd'
,
'e'
,
'n'
,
't'
,
'i'
,
'f'
,
'i'
,
'c'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'C'
,
'o'
,
'd'
,
'e'
,
0
};
static
const
WCHAR
prop_identifyingnumberW
[]
=
{
'I'
,
'd'
,
'e'
,
'n'
,
't'
,
'i'
,
'f'
,
'y'
,
'i'
,
'n'
,
'g'
,
'N'
,
'u'
,
'm'
,
'b'
,
'e'
,
'r'
,
0
};
static
const
WCHAR
prop_indexW
[]
=
{
'I'
,
'n'
,
'd'
,
'e'
,
'x'
,
0
};
static
const
WCHAR
prop_installdateW
[]
=
...
...
@@ -338,7 +340,8 @@ static const struct column col_compsys[] =
};
static
const
struct
column
col_compsysproduct
[]
=
{
{
prop_uuidW
,
CIM_STRING
}
{
prop_identifyingnumberW
,
CIM_STRING
|
COL_FLAG_KEY
},
{
prop_uuidW
,
CIM_STRING
}
};
static
const
struct
column
col_datafile
[]
=
{
...
...
@@ -571,6 +574,8 @@ static const WCHAR compsys_manufacturerW[] =
{
'T'
,
'h'
,
'e'
,
' '
,
'W'
,
'i'
,
'n'
,
'e'
,
' '
,
'P'
,
'r'
,
'o'
,
'j'
,
'e'
,
'c'
,
't'
,
0
};
static
const
WCHAR
compsys_modelW
[]
=
{
'W'
,
'i'
,
'n'
,
'e'
,
0
};
static
const
WCHAR
compsysproduct_identifyingnumberW
[]
=
{
'0'
,
0
};
static
const
WCHAR
compsysproduct_uuidW
[]
=
{
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'-'
,
'0'
,
'0'
,
'0'
,
'0'
,
'-'
,
'0'
,
'0'
,
'0'
,
'0'
,
'-'
,
'0'
,
'0'
,
'0'
,
'0'
,
'-'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
'0'
,
0
};
...
...
@@ -662,6 +667,7 @@ struct record_computersystem
};
struct
record_computersystemproduct
{
const
WCHAR
*
identifyingnumber
;
const
WCHAR
*
uuid
;
};
struct
record_datafile
...
...
@@ -872,7 +878,7 @@ static const struct record_bios data_bios[] =
};
static
const
struct
record_computersystemproduct
data_compsysproduct
[]
=
{
{
compsysproduct_uuidW
}
{
compsysproduct_
identifyingnumberW
,
compsysproduct_
uuidW
}
};
static
const
struct
record_param
data_param
[]
=
{
...
...
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