This commit was manufactured by cvs2svn to create branch 'captive'.
[reactos.git] / subsys / system / explorer / winefile / externals.h
1 /*
2  * Copyright 2003 Martin Fuchs
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20  //
21  // Explorer clone
22  //
23  // externals.h
24  //
25  // Martin Fuchs, 07.06.2003
26  //
27
28
29  // launch start programs
30 extern int startup(int argc, char *argv[]);
31
32  // explorer main routine
33 extern int explorer_main(HINSTANCE hinstance, HWND hwndDesktop, int cmdshow);
34
35  // display explorer/file manager window
36 extern void explorer_show_frame(HWND hwndDesktop, int cmdshow);
37
38  // test for already running desktop instance
39 extern BOOL IsAnyDesktopRunning();
40
41  // start desktop bar
42 extern HWND InitializeExplorerBar(HINSTANCE hInstance);
43
44  // load plugins
45 extern int LoadAvailablePlugIns(HWND ExplWnd);
46
47  // shut down plugins
48 extern int ReleaseAvailablePlugIns();
49
50  // search for windows of a specific classname
51 extern int find_window_class(LPCTSTR classname);
52