mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Patch to make the End Process Button working, by Michael Fritscher
svn path=/trunk/; revision=12736
This commit is contained in:
parent
dd387c42f0
commit
f6466c9edd
1 changed files with 7 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue