Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
fe695f3e
Commit
fe695f3e
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_NetworkAdapter.Manufacturer.
parent
4d0a1588
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
builtin.c
dlls/wbemprox/builtin.c
+3
-0
No files found.
dlls/wbemprox/builtin.c
View file @
fe695f3e
...
...
@@ -252,6 +252,7 @@ static const struct column col_networkadapter[] =
{
prop_deviceidW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
|
COL_FLAG_KEY
},
{
prop_interfaceindexW
,
CIM_UINT32
,
VT_I4
},
{
prop_macaddressW
,
CIM_STRING
|
COL_FLAG_DYNAMIC
},
{
prop_manufacturerW
,
CIM_STRING
},
{
prop_netconnectionstatusW
,
CIM_UINT16
,
VT_I4
},
{
prop_pnpdeviceidW
,
CIM_STRING
},
{
prop_speedW
,
CIM_UINT64
}
...
...
@@ -424,6 +425,7 @@ struct record_networkadapter
const
WCHAR
*
device_id
;
INT32
interface_index
;
const
WCHAR
*
mac_address
;
const
WCHAR
*
manufacturer
;
UINT16
netconnection_status
;
const
WCHAR
*
pnpdevice_id
;
UINT64
speed
;
...
...
@@ -741,6 +743,7 @@ static void fill_networkadapter( struct table *table )
rec
->
device_id
=
heap_strdupW
(
device_id
);
rec
->
interface_index
=
aa
->
u
.
s
.
IfIndex
;
rec
->
mac_address
=
get_mac_address
(
aa
->
PhysicalAddress
,
aa
->
PhysicalAddressLength
);
rec
->
manufacturer
=
compsys_manufacturerW
;
rec
->
netconnection_status
=
get_connection_status
(
aa
->
OperStatus
);
rec
->
pnpdevice_id
=
networkadapter_pnpdeviceidW
;
rec
->
speed
=
1000000
;
...
...
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