How can I calculate device bandwidth usage percentage using windows API
I tried using GetIpStatisticsEx
() function but that didn't help
How can I calculate device bandwidth usage percentage using windows API
I tried using GetIpStatisticsEx
() function but that didn't help
You could try to use GetIfTable function
GetIfTable function enumerates physical interfaces on a local system and returns this information in a MIB_IFTABLE structure
. The MIB_IFTABLE structure contains an interface count and an array of MIB_IFROW structures
for each interface.