PROCESS_NETWORK_COUNTERS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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;

#endif
#endif
#endif

View code on GitHub

NtDoc

No description available.