1 2 #ifndef _WINE_COMDLG32_PRECOMP_H 3 #define _WINE_COMDLG32_PRECOMP_H 4 5 #include <wine/config.h> 6 7 #include <stdio.h> 8 9 #define WIN32_NO_STATUS 10 #define _INC_WINDOWS 11 #define COM_NO_WINDOWS_H 12 13 #define COBJMACROS 14 #define NONAMELESSUNION 15 #define NONAMELESSSTRUCT 16 17 #include <windef.h> 18 #include <winbase.h> 19 #include <wingdi.h> 20 #include <winuser.h> 21 #include <wincon.h> 22 #include <winternl.h> 23 #include <objbase.h> 24 #include <commdlg.h> 25 #include <shlobj.h> 26 #include <dlgs.h> 27 #include <cderr.h> 28 /* RegGetValueW is supported by Win2k3 SP1 but headers need Win Vista */ 29 #undef _WIN32_WINNT 30 #define _WIN32_WINNT 0x0600 31 #include <winreg.h> 32 #define NO_SHLWAPI_STREAM 33 #include <shlwapi.h> 34 35 #include <wine/unicode.h> 36 #include <wine/debug.h> 37 38 #include "cdlg.h" 39 #include "filedlgbrowser.h" 40 41 #endif /* !_WINE_COMDLG32_PRECOMP_H */ 42