2004-03-23 02:19:54 +01:00
|
|
|
/*
|
|
|
|
* ReactOS Task Manager
|
|
|
|
*
|
|
|
|
* endproc.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 - 2001 Brian Palmer <brianp@reactos.org>
|
2008-08-20 10:32:24 +02:00
|
|
|
* Copyright (C) 2008 Vladimir Pankratov
|
2004-03-23 02:19:54 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-03-23 02:19:54 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */
|
|
|
|
#include <windows.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <memory.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <winnt.h>
|
2008-08-20 10:32:24 +02:00
|
|
|
|
|
|
|
#include "wine/unicode.h"
|
2004-03-23 02:19:54 +01:00
|
|
|
#include "taskmgr.h"
|
|
|
|
#include "perfdata.h"
|
|
|
|
|
2009-06-24 14:39:19 +02:00
|
|
|
WCHAR wszWarnMsg[511];
|
|
|
|
WCHAR wszWarnTitle[255];
|
|
|
|
WCHAR wszUnable2Terminate[255];
|
|
|
|
|
|
|
|
static void load_message_strings(void)
|
|
|
|
{
|
|
|
|
LoadStringW(hInst, IDS_TERMINATE_MESSAGE, wszWarnMsg, sizeof(wszWarnMsg)/sizeof(WCHAR));
|
|
|
|
LoadStringW(hInst, IDS_TERMINATE_UNABLE2TERMINATE, wszUnable2Terminate, sizeof(wszUnable2Terminate)/sizeof(WCHAR));
|
|
|
|
LoadStringW(hInst, IDS_WARNING_TITLE, wszWarnTitle, sizeof(wszWarnTitle)/sizeof(WCHAR));
|
|
|
|
}
|
2008-08-20 10:32:24 +02:00
|
|
|
|
2004-03-23 02:19:54 +01:00
|
|
|
void ProcessPage_OnEndProcess(void)
|
|
|
|
{
|
2008-08-20 10:32:24 +02:00
|
|
|
LVITEMW lvitem;
|
2004-03-23 02:19:54 +01:00
|
|
|
ULONG Index;
|
|
|
|
DWORD dwProcessId;
|
2008-08-20 10:32:24 +02:00
|
|
|
HANDLE hProcess;
|
|
|
|
WCHAR wstrErrorText[256];
|
2004-03-23 02:19:54 +01:00
|
|
|
|
2009-06-24 14:39:19 +02:00
|
|
|
load_message_strings();
|
|
|
|
|
2004-03-23 02:19:54 +01:00
|
|
|
for (Index=0; Index<(ULONG)ListView_GetItemCount(hProcessPageListCtrl); Index++)
|
|
|
|
{
|
|
|
|
lvitem.mask = LVIF_STATE;
|
|
|
|
lvitem.stateMask = LVIS_SELECTED;
|
|
|
|
lvitem.iItem = Index;
|
2006-10-05 11:02:27 +02:00
|
|
|
lvitem.iSubItem = 0;
|
2004-03-23 02:19:54 +01:00
|
|
|
|
2008-08-20 10:32:24 +02:00
|
|
|
SendMessageW(hProcessPageListCtrl, LVM_GETITEMW, 0, (LPARAM) &lvitem);
|
2004-03-23 02:19:54 +01:00
|
|
|
|
|
|
|
if (lvitem.state & LVIS_SELECTED)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
dwProcessId = PerfDataGetProcessId(Index);
|
|
|
|
|
|
|
|
if ((ListView_GetSelectedCount(hProcessPageListCtrl) != 1) || (dwProcessId == 0))
|
|
|
|
return;
|
|
|
|
|
2008-08-20 10:32:24 +02:00
|
|
|
if (MessageBoxW(hMainWnd, wszWarnMsg, wszWarnTitle, MB_YESNO|MB_ICONWARNING) != IDYES)
|
2004-03-23 02:19:54 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
hProcess = OpenProcess(PROCESS_TERMINATE, FALSE, dwProcessId);
|
|
|
|
|
|
|
|
if (!hProcess)
|
|
|
|
{
|
2008-08-20 10:32:24 +02:00
|
|
|
GetLastErrorText(wstrErrorText, sizeof(wstrErrorText)/sizeof(WCHAR));
|
|
|
|
MessageBoxW(hMainWnd, wstrErrorText,wszUnable2Terminate, MB_OK|MB_ICONSTOP);
|
2004-03-23 02:19:54 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!TerminateProcess(hProcess, 0))
|
|
|
|
{
|
2008-08-20 10:32:24 +02:00
|
|
|
GetLastErrorText(wstrErrorText, sizeof(wstrErrorText)/sizeof(WCHAR));
|
|
|
|
MessageBoxW(hMainWnd, wstrErrorText,wszUnable2Terminate, MB_OK|MB_ICONSTOP);
|
2004-03-23 02:19:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CloseHandle(hProcess);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessPage_OnEndProcessTree(void)
|
|
|
|
{
|
2008-08-20 10:32:24 +02:00
|
|
|
LVITEMW lvitem;
|
2004-03-23 02:19:54 +01:00
|
|
|
ULONG Index;
|
|
|
|
DWORD dwProcessId;
|
2008-08-20 10:32:24 +02:00
|
|
|
HANDLE hProcess;
|
|
|
|
WCHAR wstrErrorText[256];
|
2004-03-23 02:19:54 +01:00
|
|
|
|
2009-06-24 14:39:19 +02:00
|
|
|
load_message_strings();
|
|
|
|
|
2004-03-23 02:19:54 +01:00
|
|
|
for (Index=0; Index<(ULONG)ListView_GetItemCount(hProcessPageListCtrl); Index++)
|
|
|
|
{
|
|
|
|
lvitem.mask = LVIF_STATE;
|
|
|
|
lvitem.stateMask = LVIS_SELECTED;
|
|
|
|
lvitem.iItem = Index;
|
2006-10-05 11:02:27 +02:00
|
|
|
lvitem.iSubItem = 0;
|
2004-03-23 02:19:54 +01:00
|
|
|
|
2008-08-20 10:32:24 +02:00
|
|
|
SendMessageW(hProcessPageListCtrl, LVM_GETITEMW, 0, (LPARAM) &lvitem);
|
2004-03-23 02:19:54 +01:00
|
|
|
|
|
|
|
if (lvitem.state & LVIS_SELECTED)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
dwProcessId = PerfDataGetProcessId(Index);
|
|
|
|
|
|
|
|
if ((ListView_GetSelectedCount(hProcessPageListCtrl) != 1) || (dwProcessId == 0))
|
|
|
|
return;
|
|
|
|
|
2008-08-20 10:32:24 +02:00
|
|
|
if (MessageBoxW(hMainWnd, wszWarnMsg, wszWarnTitle, MB_YESNO|MB_ICONWARNING) != IDYES)
|
2004-03-23 02:19:54 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
hProcess = OpenProcess(PROCESS_TERMINATE, FALSE, dwProcessId);
|
|
|
|
|
|
|
|
if (!hProcess)
|
|
|
|
{
|
2008-08-20 10:32:24 +02:00
|
|
|
GetLastErrorText(wstrErrorText, sizeof(wstrErrorText)/sizeof(WCHAR));
|
|
|
|
MessageBoxW(hMainWnd, wstrErrorText,wszUnable2Terminate, MB_OK|MB_ICONSTOP);
|
2004-03-23 02:19:54 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!TerminateProcess(hProcess, 0))
|
|
|
|
{
|
2008-08-20 10:32:24 +02:00
|
|
|
GetLastErrorText(wstrErrorText, sizeof(wstrErrorText)/sizeof(WCHAR));
|
|
|
|
MessageBoxW(hMainWnd, wstrErrorText,wszUnable2Terminate, MB_OK|MB_ICONSTOP);
|
2004-03-23 02:19:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CloseHandle(hProcess);
|
|
|
|
}
|