Patch to make the End Process Button working, by Michael Fritscher
Modified: trunk/reactos/subsys/system/taskmgr/procpage.c

Modified: trunk/reactos/subsys/system/taskmgr/procpage.c
--- trunk/reactos/subsys/system/taskmgr/procpage.c	2005-01-02 20:12:17 UTC (rev 12735)
+++ trunk/reactos/subsys/system/taskmgr/procpage.c	2005-01-02 20:47:34 UTC (rev 12736)
@@ -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 @@
         break;
 
     case WM_COMMAND:
+        /* Handle the button clicks */
+        switch (LOWORD(wParam))
+        {
+                case IDC_ENDPROCESS:
+                        ProcessPage_OnEndProcess();
+        }
         break;
 
     case WM_SIZE: