mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
55914f752b
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3768 21ef857c-d57f-4fe0-8362-d861dc6d29cd
30 lines
474 B
C
30 lines
474 B
C
#ifndef EXTENDEDTOOLS_H
|
|
#define EXTENDEDTOOLS_H
|
|
|
|
#define PHNT_VERSION PHNT_VISTA
|
|
#include <phdk.h>
|
|
|
|
extern PPH_PLUGIN PluginInstance;
|
|
|
|
// objprp
|
|
|
|
VOID EtHandlePropertiesInitializing(
|
|
__in PVOID Parameter
|
|
);
|
|
|
|
// thrdact
|
|
|
|
BOOLEAN EtUiCancelIoThread(
|
|
__in HWND hWnd,
|
|
__in PPH_THREAD_ITEM Thread
|
|
);
|
|
|
|
// unldll
|
|
|
|
VOID EtShowUnloadedDllsDialog(
|
|
__in HWND ParentWindowHandle,
|
|
__in PPH_PROCESS_ITEM ProcessItem
|
|
);
|
|
|
|
#endif
|