ReactOS 0.4.15-dev-7924-g5949c20
run.h
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Task Manager
3 * LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
4 * PURPOSE: Run Task.
5 * COPYRIGHT: Copyright 1999-2001 Brian Palmer <brianp@reactos.org>
6 * Copyright 2005 Klemens Friedl <frik85@reactos.at>
7 */
8/*
9 * run.h - definitions necessary to use Microsoft's "Run" dialog
10 * Undocumented Windows call
11 * use the type below to declare a function pointer
12 *
13 * Information taken from http://www.geocities.com/SiliconValley/4942/
14 * Copyright © 1998-1999 James Holderness. All Rights Reserved.
15 * jholderness@geocities.com
16 */
17
18#pragma once
19
20void TaskManager_OnFileNew(void);
21
23HWND hwndOwner,
25LPCWSTR lpstrDirectory,
26LPCWSTR lpstrTitle,
27LPCWSTR lpstrDescription,
29
30/*
31 * Flags for RunFileDlg
32 */
33#define RFF_NOBROWSE 0x01 /* Removes the browse button. */
34#define RFF_NODEFAULT 0x02 /* No default item selected. */
35#define RFF_CALCDIRECTORY 0x04 /* Calculates the working directory from the file name. */
36#define RFF_NOLABEL 0x08 /* Removes the edit box label. */
37#define RFF_NOSEPARATEMEM 0x20 /* Removes the Separate Memory Space check box (Windows NT only). */
UINT uFlags
Definition: api.c:59
static HICON
Definition: imagelist.c:84
HICON hIcon
Definition: msconfig.c:44
unsigned int UINT
Definition: ndis.h:50
void(WINAPI * RUNFILEDLG)(HWND hwndOwner, HICON hIcon, LPCWSTR lpstrDirectory, LPCWSTR lpstrTitle, LPCWSTR lpstrDescription, UINT uFlags)
Definition: run.h:22
void TaskManager_OnFileNew(void)
Definition: run.c:11
#define WINAPI
Definition: msvc.h:6
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185