mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
46b4b5581d
Taskmgr used a mixture: Sometimes _countof(), sometimes ARRAYSIZE() and sometimes it calculated the count plain by sizeof(var)/sizeof(TYPE). Harmonize everywhere to _countof() as it is the shortest solution. Fix some formatting sins, like placing comments before else-statement. Shorten the length of some very long line intentionally *without introducing additional linebreaks* ! Shorten vertical length of some functions to increase their chance to fit on the screen without scrolling. Fix wrong indentation level in TaskManagerWndProc(). *.rc: Remove superfluous and redundant comment in all langs No functional change intended.
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
/*
|
|
* PROJECT: ReactOS Task Manager
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Run Task
|
|
* COPYRIGHT: Copyright 1999-2001 Brian Palmer <brianp@reactos.org>
|
|
* Copyright 2005 Klemens Friedl <frik85@reactos.at>
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
void TaskManager_OnFileNew(void)
|
|
{
|
|
HMODULE hShell32;
|
|
RUNFILEDLG RunFileDlg;
|
|
WCHAR szTitle[40];
|
|
WCHAR szText[256];
|
|
|
|
/* Load language strings from resource file */
|
|
LoadStringW(hInst, IDS_CREATENEWTASK, szTitle, _countof(szTitle));
|
|
LoadStringW(hInst, IDS_CREATENEWTASK_DESC, szText, _countof(szText));
|
|
|
|
hShell32 = LoadLibraryW(L"SHELL32.DLL");
|
|
RunFileDlg = (RUNFILEDLG)(FARPROC)GetProcAddress(hShell32, (LPCSTR)61);
|
|
|
|
/* Show "Run..." dialog */
|
|
if (RunFileDlg)
|
|
{
|
|
HICON hIcon = LoadIconW(hInst, MAKEINTRESOURCEW(IDI_TASKMANAGER));
|
|
|
|
/* NOTE - don't check whether running on win 9x or NT, let's just
|
|
assume that a unicode build only runs on NT */
|
|
RunFileDlg(hMainWnd, hIcon, NULL, szTitle, szText, RFF_CALCDIRECTORY);
|
|
|
|
DeleteObject(hIcon);
|
|
}
|
|
|
|
FreeLibrary(hShell32);
|
|
}
|