Commit 9668e1c0 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

taskmgr: Implement the Help menu.

parent 1ea1c3d0
...@@ -770,6 +770,7 @@ LPWSTR GetLastErrorText(LPWSTR lpwszBuf, DWORD dwSize) ...@@ -770,6 +770,7 @@ LPWSTR GetLastErrorText(LPWSTR lpwszBuf, DWORD dwSize)
static INT_PTR CALLBACK static INT_PTR CALLBACK
TaskManagerWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) TaskManagerWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{ {
static const WCHAR wszTaskmgr[] = {'t','a','s','k','m','g','r',0};
HDC hdc; HDC hdc;
PAINTSTRUCT ps; PAINTSTRUCT ps;
LPRECT pRC; LPRECT pRC;
...@@ -904,6 +905,9 @@ TaskManagerWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) ...@@ -904,6 +905,9 @@ TaskManagerWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
case ID_PROCESS_PAGE_DEBUGCHANNELS: case ID_PROCESS_PAGE_DEBUGCHANNELS:
ProcessPage_OnDebugChannels(); ProcessPage_OnDebugChannels();
break; break;
case ID_HELP_TOPICS:
WinHelpW(hDlg, wszTaskmgr, HELP_FINDER, 0);
break;
case ID_HELP_ABOUT: case ID_HELP_ABOUT:
OnAbout(); OnAbout();
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment