mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:45:44 +00:00
[PSDK]
- add MIB_TCPROW_OWNER_PID, MIB_TCPTABLE_OWNER_PID types svn path=/trunk/; revision=66246
This commit is contained in:
parent
fee28b842e
commit
0cffc5a67c
1 changed files with 15 additions and 0 deletions
|
@ -316,4 +316,19 @@ typedef enum {
|
|||
TCP_TABLE_OWNER_MODULE_ALL
|
||||
} TCP_TABLE_CLASS, *PTCP_TABLE_CLASS;
|
||||
|
||||
typedef struct _MIB_TCPROW_OWNER_PID {
|
||||
DWORD dwState;
|
||||
DWORD dwLocalAddr;
|
||||
DWORD dwLocalPort;
|
||||
DWORD dwRemoteAddr;
|
||||
DWORD dwRemotePort;
|
||||
DWORD dwOwningPid;
|
||||
} MIB_TCPROW_OWNER_PID, *PMIB_TCPROW_OWNER_PID;
|
||||
|
||||
typedef struct {
|
||||
DWORD dwNumEntries;
|
||||
MIB_TCPROW_OWNER_PID table[0];
|
||||
} MIB_TCPTABLE_OWNER_PID, *PMIB_TCPTABLE_OWNER_PID;
|
||||
|
||||
|
||||
#endif /* WINE_IPRTRMIB_H__ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue