* Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
[reactos.git] / base / shell / explorer / precomp.h
1 /*
2 * Copyright 2004 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19 #ifndef _EXPLORER_H
20 #define _EXPLORER_H
21
22 //
23 // Explorer clone - precompiled header support
24 //
25 // precomp.h
26 //
27 // Martin Fuchs, 17.05.2004
28 //
29
30 #define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1
31 #define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT 1
32
33 #include <stdarg.h>
34
35 #define WIN32_NO_STATUS
36 #define _INC_WINDOWS
37 #define COM_NO_WINDOWS_H
38
39 #include <windef.h>
40 #include <winbase.h>
41 #include <winreg.h>
42 #include <wingdi.h>
43 #include <winnls.h>
44 #include <wincon.h>
45 #include <ole2.h>
46
47 #include "utility/utility.h"
48
49 #include "explorer.h"
50 #include "desktop/desktop.h"
51
52 #include "globals.h"
53 #include "externals.h"
54
55 #include "resource.h"
56
57 #endif /* _EXPLORER_H */