#ifndef _NTPSAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if !defined(NTDDI_WIN11_GE) || (NTDDI_VERSION < NTDDI_WIN11_GE)
/**
* The PROCESS_NETWORK_COUNTERS structure contains network usage statistics for a process.
*/
typedef struct _PROCESS_NETWORK_COUNTERS
{
ULONG64 BytesIn; // The total number of bytes received by the process.
ULONG64 BytesOut; // The total number of bytes sent by the process.
} PROCESS_NETWORK_COUNTERS, *PPROCESS_NETWORK_COUNTERS;
View code on GitHubNo description available.