Patch to make the End Process Button working, by Michael Fritscher

svn path=/trunk/; revision=12736
This commit is contained in:
KJK::Hyperion 2005-01-02 20:47:34 +00:00
parent dd387c42f0
commit f6466c9edd

View file

@ -34,6 +34,7 @@
#include "column.h"
#include "proclist.h"
#include "dbgchnl.h"
#include "endproc.h"
#include <ctype.h>
HWND hProcessPage; /* Process List Property Page */
@ -110,6 +111,12 @@ ProcessPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
break;
case WM_COMMAND:
/* Handle the button clicks */
switch (LOWORD(wParam))
{
case IDC_ENDPROCESS:
ProcessPage_OnEndProcess();
}
break;
case WM_SIZE: