diff options
Diffstat (limited to 'psutil/arch/windows/global.h')
-rw-r--r-- | psutil/arch/windows/global.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/psutil/arch/windows/global.h b/psutil/arch/windows/global.h index 323d2c6d..69a1fd6c 100644 --- a/psutil/arch/windows/global.h +++ b/psutil/arch/windows/global.h @@ -19,6 +19,8 @@ typedef DWORD (CALLBACK *_GetActiveProcessorCount)(WORD); typedef ULONGLONG (CALLBACK *_GetTickCount64)(void); typedef DWORD (WINAPI * _GetExtendedTcpTable)(PVOID, PDWORD, BOOL, ULONG, TCP_TABLE_CLASS, ULONG); +typedef DWORD (WINAPI * _GetExtendedUdpTable)(PVOID, PDWORD, BOOL, ULONG, + UDP_TABLE_CLASS, ULONG); _RtlIpv4AddressToStringA \ @@ -48,4 +50,8 @@ _GetTickCount64 \ _GetExtendedTcpTable \ psutil_GetExtendedTcpTable; +_GetExtendedUdpTable \ + psutil_GetExtendedUdpTable; + + int psutil_load_globals(); |