2004-03-23 02:19:54 +01:00
|
|
|
/*
|
|
|
|
* ReactOS Task Manager
|
|
|
|
*
|
|
|
|
* run.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 - 2001 Brian Palmer <brianp@reactos.org>
|
|
|
|
*
|
|
|
|
* 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 <malloc.h>
|
|
|
|
#include <memory.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "taskmgr.h"
|
|
|
|
|
|
|
|
typedef void (WINAPI *RUNFILEDLG)(
|
|
|
|
HWND hwndOwner,
|
|
|
|
HICON hIcon,
|
|
|
|
LPCSTR lpstrDirectory,
|
|
|
|
LPCSTR lpstrTitle,
|
|
|
|
LPCSTR lpstrDescription,
|
|
|
|
UINT uFlags);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Flags for RunFileDlg
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define RFF_NOBROWSE 0x01 /* Removes the browse button. */
|
|
|
|
#define RFF_NODEFAULT 0x02 /* No default item selected. */
|
|
|
|
#define RFF_CALCDIRECTORY 0x04 /* Calculates the working directory from the file name. */
|
|
|
|
#define RFF_NOLABEL 0x08 /* Removes the edit box label. */
|
|
|
|
#define RFF_NOSEPARATEMEM 0x20 /* Removes the Separate Memory Space check box (Windows NT only). */
|
|
|
|
|
|
|
|
void TaskManager_OnFileNew(void)
|
|
|
|
{
|
|
|
|
HMODULE hShell32;
|
|
|
|
RUNFILEDLG RunFileDlg;
|
|
|
|
OSVERSIONINFO versionInfo;
|
|
|
|
WCHAR wTitle[40];
|
|
|
|
WCHAR wText[256];
|
|
|
|
char szTitle[40] = "Create New Task";
|
|
|
|
char szText[256] = "Type the name of a program, folder, document, or Internet resource, and Task Manager will open it for you.";
|
|
|
|
|
|
|
|
hShell32 = LoadLibrary(_T("SHELL32.DLL"));
|
|
|
|
RunFileDlg = (RUNFILEDLG)(FARPROC)GetProcAddress(hShell32, (char*)((long)0x3D));
|
|
|
|
|
|
|
|
/* Show "Run..." dialog */
|
|
|
|
if (RunFileDlg)
|
|
|
|
{
|
|
|
|
versionInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
|
|
|
GetVersionEx(&versionInfo);
|
|
|
|
|
|
|
|
if (versionInfo.dwPlatformId == VER_PLATFORM_WIN32_NT)
|
|
|
|
{
|
|
|
|
MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, szTitle, -1, wTitle, 40);
|
|
|
|
MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, szText, -1, wText, 256);
|
|
|
|
RunFileDlg(hMainWnd, 0, NULL, (LPCSTR)wTitle, (LPCSTR)wText, RFF_CALCDIRECTORY);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
RunFileDlg(hMainWnd, 0, NULL, szTitle, szText, RFF_CALCDIRECTORY);
|
|
|
|
}
|
|
|
|
|
|
|
|
FreeLibrary(hShell32);
|
|
|
|
}
|