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
4d0a1588
Commit
4d0a1588
authored
Oct 04, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Implement Win32_Processor.UniqueId.
parent
eeb8ea7a
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 @
4d0a1588
...
@@ -182,6 +182,8 @@ static const WCHAR prop_totalphysicalmemoryW[] =
...
@@ -182,6 +182,8 @@ static const WCHAR prop_totalphysicalmemoryW[] =
{
'T'
,
'o'
,
't'
,
'a'
,
'l'
,
'P'
,
'h'
,
'y'
,
's'
,
'i'
,
'c'
,
'a'
,
'l'
,
'M'
,
'e'
,
'm'
,
'o'
,
'r'
,
'y'
,
0
};
{
'T'
,
'o'
,
't'
,
'a'
,
'l'
,
'P'
,
'h'
,
'y'
,
's'
,
'i'
,
'c'
,
'a'
,
'l'
,
'M'
,
'e'
,
'm'
,
'o'
,
'r'
,
'y'
,
0
};
static
const
WCHAR
prop_typeW
[]
=
static
const
WCHAR
prop_typeW
[]
=
{
'T'
,
'y'
,
'p'
,
'e'
,
0
};
{
'T'
,
'y'
,
'p'
,
'e'
,
0
};
static
const
WCHAR
prop_uniqueidW
[]
=
{
'U'
,
'n'
,
'i'
,
'q'
,
'u'
,
'e'
,
'I'
,
'd'
,
0
};
static
const
WCHAR
prop_versionW
[]
=
static
const
WCHAR
prop_versionW
[]
=
{
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
{
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
...
@@ -290,7 +292,8 @@ static const struct column col_processor[] =
...
@@ -290,7 +292,8 @@ static const struct column col_processor[] =
{
prop_maxclockspeedW
,
CIM_UINT32
,
VT_I4
},
{
prop_maxclockspeedW
,
CIM_UINT32
,
VT_I4
},
{
prop_nameW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_nameW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_numlogicalprocessorsW
,
CIM_UINT32
,
VT_I4
},
{
prop_numlogicalprocessorsW
,
CIM_UINT32
,
VT_I4
},
{
prop_processoridW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
}
{
prop_processoridW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_uniqueidW
,
CIM_STRING
}
};
};
static
const
struct
column
col_service
[]
=
static
const
struct
column
col_service
[]
=
{
{
...
@@ -462,6 +465,7 @@ struct record_processor
...
@@ -462,6 +465,7 @@ struct record_processor
const
WCHAR
*
name
;
const
WCHAR
*
name
;
UINT32
num_logical_processors
;
UINT32
num_logical_processors
;
const
WCHAR
*
processor_id
;
const
WCHAR
*
processor_id
;
const
WCHAR
*
unique_id
;
};
};
struct
record_service
struct
record_service
{
{
...
@@ -898,6 +902,7 @@ static void fill_processor( struct table *table )
...
@@ -898,6 +902,7 @@ static void fill_processor( struct table *table )
rec
->
name
=
heap_strdupW
(
name
);
rec
->
name
=
heap_strdupW
(
name
);
rec
->
num_logical_processors
=
num_logical_processors
;
rec
->
num_logical_processors
=
num_logical_processors
;
rec
->
processor_id
=
heap_strdupW
(
processor_id
);
rec
->
processor_id
=
heap_strdupW
(
processor_id
);
rec
->
unique_id
=
NULL
;
offset
+=
sizeof
(
*
rec
);
offset
+=
sizeof
(
*
rec
);
}
}
...
...
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