Files
mirror-processhacker/2.x/trunk/plugins/ProcessActions/config.c
T
wj32 43ec20a4a0 added config dialog
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3567 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2010-09-06 02:51:49 +00:00

50 lines
809 B
C

#include <phdk.h>
#include "procdb.h"
#include "actions.h"
#include "config.h"
#include "resource.h"
INT_PTR CALLBACK ConfigDlgProc(
__in HWND hwndDlg,
__in UINT uMsg,
__in WPARAM wParam,
__in LPARAM lParam
);
VOID PaShowConfigurationDialog(
__in HWND ParentWindowHandle,
__in PVOID DllBase
)
{
DialogBox(
DllBase,
MAKEINTRESOURCE(IDD_CONFIG),
ParentWindowHandle,
ConfigDlgProc
);
}
INT_PTR CALLBACK ConfigDlgProc(
__in HWND hwndDlg,
__in UINT uMsg,
__in WPARAM wParam,
__in LPARAM lParam
)
{
switch (uMsg)
{
case WM_INITDIALOG:
{
}
break;
case WM_DESTROY:
{
}
break;
}
return FALSE;
}