[DEVMGR]
[reactos.git] / reactos / dll / win32 / devmgr_new / 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 <RegStr.h>
16
17 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
18 #include <tchar.h>
19 #include <atlbase.h>
20 #include <atlstr.h>
21 #include <atlcoll.h>
22
23 #include <strsafe.h>
24
25 #define ERR printf
26 #define FIXME printf
27 #define UNIMPLEMENTED
28 #define WINE_DEFAULT_DEBUG_CHANNEL(t)
29
30 DWORD WINAPI pSetupGuidFromString(PCWSTR pString, LPGUID lpGUID);
31
32 BOOL
33 WINAPI
34 InstallDevInst(
35 IN HWND hWndParent,
36 IN LPCWSTR InstanceId,
37 IN BOOL bUpdate,
38 OUT LPDWORD lpReboot);
39
40 #else
41
42 #include <string.h>
43 #include <wchar.h>
44
45 #include <tchar.h>
46 #include <windef.h>
47 #include <winbase.h>
48 #include <winreg.h>
49 #include <wingdi.h>
50 #include <winnls.h>
51 #include <wincon.h>
52 #include <shlobj.h>
53 #include <shlwapi.h>
54 #include <strsafe.h>
55 #include <process.h>
56 #include <WindowsX.h>
57 #include <strsafe.h>
58 #include <regstr.h>
59 #include <newdevp.h>
60
61 #include <setupapi.h>
62 #include <commctrl.h>
63 #include <cfgmgr32.h>
64 #include <Uxtheme.h>
65 #include <devguid.h>
66
67 #include <atlbase.h>
68 #include <atlstr.h>
69 #include <atlcoll.h>
70
71 #include <wine/debug.h>
72
73 //WINE_DEFAULT_DEBUG_CHANNEL(devmgr);
74
75 #endif