[DEVMGR] Hackfix CORE-5643
[reactos.git] / dll / win32 / devmgr / precomp.h
1 //#pragma once
2
3 #ifndef __REACTOS__
4
5 #define WIN32_LEAN_AND_MEAN
6 #include <Windows.h>
7 #include <windowsx.h>
8 #include <setupapi.h>
9 #include <cfgmgr32.h>
10 #include <commctrl.h>
11 #include <Uxtheme.h>
12 #include <Cfgmgr32.h>
13 #include <devguid.h>
14 #include <process.h>
15 #include <dbt.h>
16 #include <RegStr.h>
17
18 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
19 #include <tchar.h>
20 #include <atlbase.h>
21 #include <atlstr.h>
22 #include <atlcoll.h>
23
24 #include <strsafe.h>
25
26 #include <devmgr/devmgr.h>
27
28 #define ERR printf
29 #define FIXME printf
30 #define UNIMPLEMENTED
31 #define WINE_DEFAULT_DEBUG_CHANNEL(t)
32
33 DWORD WINAPI pSetupGuidFromString(PCWSTR pString, LPGUID lpGUID);
34
35 BOOL
36 WINAPI
37 InstallDevInst(
38 IN HWND hWndParent,
39 IN LPCWSTR InstanceId,
40 IN BOOL bUpdate,
41 OUT LPDWORD lpReboot);
42
43 #else
44
45 #include <string.h>
46 #include <wchar.h>
47
48 #include <tchar.h>
49 #include <windef.h>
50 #include <winbase.h>
51 #include <winreg.h>
52 #include <wingdi.h>
53 #include <winnls.h>
54 #include <wincon.h>
55 #include <shlobj.h>
56 #include <shlwapi.h>
57 #include <strsafe.h>
58 #include <process.h>
59 #include <windowsx.h>
60 #include <strsafe.h>
61 #include <regstr.h>
62 #include <newdevp.h>
63 #include <dbt.h>
64
65 #include <setupapi.h>
66 #include <commctrl.h>
67 #include <cfgmgr32.h>
68 #include <uxtheme.h>
69 #include <devguid.h>
70
71 #include <atlbase.h>
72 #include <atlstr.h>
73 #include <atlcoll.h>
74
75 #include <devmgr/devmgr.h>
76 #include <wine/debug.h>
77
78 //WINE_DEFAULT_DEBUG_CHANNEL(devmgr);
79
80 #endif