remove trailing whitespace at end of lines
[reactos.git] / rosapps / winfile / run.h
1 /*
2 * ReactOS File Manager
3 *
4 * run.h
5 *
6 * Copyright (C) 1999 - 2001 Brian Palmer <brianp@reactos.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program 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
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 // run.h - definitions necessary to use Microsoft's "Run" dialog
24 // Undocumented Windows call
25 // use the type below to declare a function pointer
26
27 // Information taken from http://www.geocities.com/SiliconValley/4942/
28 // Copyright © 1998-1999 James Holderness. All Rights Reserved.
29 // jholderness@geocities.com
30
31 #ifndef __RUN_H__
32 #define __RUN_H__
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38
39 void OnFileRun(void);
40 BOOL OpenTarget(HWND hWnd, TCHAR* target);
41
42
43 #ifdef __cplusplus
44 };
45 #endif
46
47 #endif // __RUN_H__