regedit: An English (United States) spelling fix.
[wine/multimedia.git] / programs / taskmgr / endproc.c
blob89c2d7bf80d7e4641dde5e06d95f926bee7a3099
1 /*
2 * ReactOS Task Manager
4 * endproc.c
6 * Copyright (C) 1999 - 2001 Brian Palmer <brianp@reactos.org>
7 * Copyright (C) 2008 Vladimir Pankratov
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include <stdio.h>
25 #include <stdlib.h>
27 #include <windows.h>
28 #include <commctrl.h>
29 #include <winnt.h>
31 #include "wine/unicode.h"
32 #include "taskmgr.h"
33 #include "perfdata.h"
35 static WCHAR wszWarnMsg[511];
36 static WCHAR wszWarnTitle[255];
37 static WCHAR wszUnable2Terminate[255];
39 static void load_message_strings(void)
41 LoadStringW(hInst, IDS_TERMINATE_MESSAGE, wszWarnMsg, sizeof(wszWarnMsg)/sizeof(WCHAR));
42 LoadStringW(hInst, IDS_TERMINATE_UNABLE2TERMINATE, wszUnable2Terminate, sizeof(wszUnable2Terminate)/sizeof(WCHAR));
43 LoadStringW(hInst, IDS_WARNING_TITLE, wszWarnTitle, sizeof(wszWarnTitle)/sizeof(WCHAR));
46 void ProcessPage_OnEndProcess(void)
48 LVITEMW lvitem;
49 ULONG Index, Count;
50 DWORD dwProcessId;
51 HANDLE hProcess;
52 WCHAR wstrErrorText[256];
54 load_message_strings();
56 Count = SendMessageW(hProcessPageListCtrl, LVM_GETITEMCOUNT, 0, 0);
57 for (Index=0; Index<Count; Index++)
59 lvitem.mask = LVIF_STATE;
60 lvitem.stateMask = LVIS_SELECTED;
61 lvitem.iItem = Index;
62 lvitem.iSubItem = 0;
64 SendMessageW(hProcessPageListCtrl, LVM_GETITEMW, 0, (LPARAM) &lvitem);
66 if (lvitem.state & LVIS_SELECTED)
67 break;
70 Count = SendMessageW(hProcessPageListCtrl, LVM_GETSELECTEDCOUNT, 0, 0);
71 dwProcessId = PerfDataGetProcessId(Index);
72 if ((Count != 1) || (dwProcessId == 0))
73 return;
75 if (MessageBoxW(hMainWnd, wszWarnMsg, wszWarnTitle, MB_YESNO|MB_ICONWARNING) != IDYES)
76 return;
78 hProcess = OpenProcess(PROCESS_TERMINATE, FALSE, dwProcessId);
80 if (!hProcess)
82 GetLastErrorText(wstrErrorText, sizeof(wstrErrorText)/sizeof(WCHAR));
83 MessageBoxW(hMainWnd, wstrErrorText,wszUnable2Terminate, MB_OK|MB_ICONSTOP);
84 return;
87 if (!TerminateProcess(hProcess, 0))
89 GetLastErrorText(wstrErrorText, sizeof(wstrErrorText)/sizeof(WCHAR));
90 MessageBoxW(hMainWnd, wstrErrorText,wszUnable2Terminate, MB_OK|MB_ICONSTOP);
93 CloseHandle(hProcess);
96 void ProcessPage_OnEndProcessTree(void)
98 LVITEMW lvitem;
99 ULONG Index, Count;
100 DWORD dwProcessId;
101 HANDLE hProcess;
102 WCHAR wstrErrorText[256];
104 load_message_strings();
106 Count = SendMessageW(hProcessPageListCtrl, LVM_GETITEMCOUNT, 0, 0);
107 for (Index=0; Index<Count; Index++)
109 lvitem.mask = LVIF_STATE;
110 lvitem.stateMask = LVIS_SELECTED;
111 lvitem.iItem = Index;
112 lvitem.iSubItem = 0;
114 SendMessageW(hProcessPageListCtrl, LVM_GETITEMW, 0, (LPARAM) &lvitem);
116 if (lvitem.state & LVIS_SELECTED)
117 break;
120 Count = SendMessageW(hProcessPageListCtrl, LVM_GETSELECTEDCOUNT, 0, 0);
121 dwProcessId = PerfDataGetProcessId(Index);
122 if ((Count != 1) || (dwProcessId == 0))
123 return;
125 if (MessageBoxW(hMainWnd, wszWarnMsg, wszWarnTitle, MB_YESNO|MB_ICONWARNING) != IDYES)
126 return;
128 hProcess = OpenProcess(PROCESS_TERMINATE, FALSE, dwProcessId);
130 if (!hProcess)
132 GetLastErrorText(wstrErrorText, sizeof(wstrErrorText)/sizeof(WCHAR));
133 MessageBoxW(hMainWnd, wstrErrorText,wszUnable2Terminate, MB_OK|MB_ICONSTOP);
134 return;
137 if (!TerminateProcess(hProcess, 0))
139 GetLastErrorText(wstrErrorText, sizeof(wstrErrorText)/sizeof(WCHAR));
140 MessageBoxW(hMainWnd, wstrErrorText,wszUnable2Terminate, MB_OK|MB_ICONSTOP);
143 CloseHandle(hProcess);