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
673da9cd
Commit
673da9cd
authored
Oct 10, 2022
by
Huw Davies
Committed by
Alexandre Julliard
Oct 13, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nsi: Use the correct members for the error and discard counts.
Wine-Bug:
https://bugs.winehq.org//show_bug.cgi?id=53234
parent
3c4cdfa7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
nsi.h
include/wine/nsi.h
+4
-5
No files found.
include/wine/nsi.h
View file @
673da9cd
...
...
@@ -54,11 +54,9 @@ struct nsi_ndis_ifinfo_dynamic
UINT
mtu
;
ULONG64
xmit_speed
;
ULONG64
rcv_speed
;
ULONG64
in_errors
;
ULONG64
unk2
[
3
]
;
ULONG64
in_discards
;
ULONG64
out_errors
;
ULONG64
out_discards
;
ULONG64
unk2
;
ULONG64
in_errors
;
ULONG64
in_octets
;
ULONG64
in_ucast_pkts
;
ULONG64
in_mcast_pkts
;
...
...
@@ -67,7 +65,8 @@ struct nsi_ndis_ifinfo_dynamic
ULONG64
out_ucast_pkts
;
ULONG64
out_mcast_pkts
;
ULONG64
out_bcast_pkts
;
ULONG64
unk3
[
2
];
ULONG64
out_errors
;
ULONG64
out_discards
;
ULONG64
in_ucast_octs
;
ULONG64
in_mcast_octs
;
ULONG64
in_bcast_octs
;
...
...
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