Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenrun.h
Go to the documentation of this file.
00001 /* 00002 * ReactOS Task Manager 00003 * 00004 * run.h 00005 * 00006 * Copyright (C) 1999 - 2001 Brian Palmer <brianp@reactos.org> 00007 * 00008 * This library is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU Lesser General Public 00010 * License as published by the Free Software Foundation; either 00011 * version 2.1 of the License, or (at your option) any later version. 00012 * 00013 * This library is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 * Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public 00019 * License along with this library; if not, write to the Free Software 00020 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00021 * 00022 * run.h - definitions necessary to use Microsoft's "Run" dialog 00023 * Undocumented Windows call 00024 * use the type below to declare a function pointer 00025 * 00026 * Information taken from http://www.geocities.com/SiliconValley/4942/ 00027 * Copyright © 1998-1999 James Holderness. All Rights Reserved. 00028 * jholderness@geocities.com 00029 */ 00030 00031 #pragma once 00032 00033 void TaskManager_OnFileNew(void); 00034 00035 typedef void (WINAPI *RUNFILEDLG)( 00036 HWND hwndOwner, 00037 HICON hIcon, 00038 LPCWSTR lpstrDirectory, 00039 LPCWSTR lpstrTitle, 00040 LPCWSTR lpstrDescription, 00041 UINT uFlags); 00042 00043 /* 00044 * Flags for RunFileDlg 00045 */ 00046 00047 #define RFF_NOBROWSE 0x01 /* Removes the browse button. */ 00048 #define RFF_NODEFAULT 0x02 /* No default item selected. */ 00049 #define RFF_CALCDIRECTORY 0x04 /* Calculates the working directory from the file name. */ 00050 #define RFF_NOLABEL 0x08 /* Removes the edit box label. */ 00051 #define RFF_NOSEPARATEMEM 0x20 /* Removes the Separate Memory Space check box (Windows NT only). */ Generated on Wed May 23 2012 04:15:56 for ReactOS by
1.7.6.1
|