mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
41096257e1
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3665 21ef857c-d57f-4fe0-8362-d861dc6d29cd
23 lines
359 B
C
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
|