Files
mirror-processhacker/2.x/trunk/plugins/NetworkTools/nettools.h
T
wj32 41096257e1 finished NetworkTools plugin
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3665 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2010-09-24 08:25:31 +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