6 * Copyright (C) 1999 - 2001 Brian Palmer <brianp@reactos.org>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */
34 typedef void (WINAPI
*RUNFILEDLG
)(
37 LPCSTR lpstrDirectory
,
39 LPCSTR lpstrDescription
,
43 * Flags for RunFileDlg
46 #define RFF_NOBROWSE 0x01 /* Removes the browse button. */
47 #define RFF_NODEFAULT 0x02 /* No default item selected. */
48 #define RFF_CALCDIRECTORY 0x04 /* Calculates the working directory from the file name. */
49 #define RFF_NOLABEL 0x08 /* Removes the edit box label. */
50 #define RFF_NOSEPARATEMEM 0x20 /* Removes the Separate Memory Space check box (Windows NT only). */
52 void TaskManager_OnFileNew(void)
55 RUNFILEDLG RunFileDlg
;
56 OSVERSIONINFO versionInfo
;
58 hShell32
= LoadLibrary(_T("SHELL32.DLL"));
59 RunFileDlg
= (RUNFILEDLG
)(FARPROC
)GetProcAddress(hShell32
, (char*)((long)0x3D));
61 /* Show "Run..." dialog */
64 HICON hIcon
= LoadIconW(GetModuleHandleW(NULL
), MAKEINTRESOURCEW(IDI_TASKMANAGER
));
65 versionInfo
.dwOSVersionInfoSize
= sizeof(OSVERSIONINFO
);
66 GetVersionEx(&versionInfo
);
68 if (versionInfo
.dwPlatformId
== VER_PLATFORM_WIN32_NT
)
71 LoadStringW(GetModuleHandleW(NULL
), IDS_RUNDLG_CAPTION
, wTitle
, 64);
72 RunFileDlg(hMainWnd
, hIcon
, NULL
, (LPCSTR
)wTitle
, NULL
, RFF_CALCDIRECTORY
);
77 LoadStringA(GetModuleHandleW(NULL
), IDS_RUNDLG_CAPTION
, szTitle
, 64);
78 RunFileDlg(hMainWnd
, hIcon
, NULL
, szTitle
, NULL
, RFF_CALCDIRECTORY
);
82 FreeLibrary(hShell32
);