Reputation: 1283
I want to call GetExtendedUdpTable function from Iphlpapi.dll shared library, but I don't know from where to get the UDP_TABLE_OWNER_PID value, so I can pass it to the function.
I don't have Windows SDK so I don't have the header files. I downloaded iphlpapi.h, iprtrmib.h, ipexport.h, iptypes.h and types.h, but couldn't find the TableClass values.
Upvotes: 0
Views: 140
Reputation: 249123
It's all here, even the enum itself in case you can't find one of the relevant header files:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa366388(v=vs.85).aspx
Upvotes: 1