Files
mirror-processhacker/3.x/trunk/plugins/NetworkTools/nettools.h
T
wj32 1bb80a3b18 second attempt at 3.x
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4669 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2011-09-14 04:16:57 +00:00

23 lines
359 B
C

#ifndef NETTOOLS_H
#define NETTOOLS_H
// main
#ifndef MAIN_PRIVATE
extern PPH_PLUGIN PluginInstance;
#endif
// output
#define NETWORK_ACTION_PING 1
#define NETWORK_ACTION_TRACEROUTE 2
#define NETWORK_ACTION_WHOIS 3
VOID PerformNetworkAction(
__in HWND hWnd,
__in ULONG Action,
__in PPH_IP_ADDRESS Address
);
#endif