1 #ifndef _SHELLBARS_PCH_ 2 #define _SHELLBARS_PCH_ 3 4 #define WIN32_NO_STATUS 5 #define _INC_WINDOWS 6 #define COM_NO_WINDOWS_H 7 8 #include <windef.h> 9 #include <winbase.h> 10 #include <shlobj.h> 11 #include <shlobj_undoc.h> 12 #include <shlguid_undoc.h> 13 #include <shdeprecated.h> 14 #include <tchar.h> 15 #include <atlbase.h> 16 #include <atlcom.h> 17 #include <atlwin.h> 18 #include <atlsimpcoll.h> 19 #include <shlwapi.h> 20 #include <shlwapi_undoc.h> 21 #include <undocshell.h> 22 #include <shellutils.h> 23 #include <strsafe.h> 24 25 #include <wine/debug.h> 26 WINE_DEFAULT_DEBUG_CHANNEL(browseui); 27 28 #include "../resource.h" 29 30 #include "CBandSite.h" 31 #include "CBandSiteMenu.h" 32 #include "CISFBand.h" 33 34 #define USE_SYSTEM_ISFBAND 0 35 36 #if USE_SYSTEM_ISFBAND 37 #define CISFBand_CreateInstance(riid, ppv) (CoCreateInstance(CLSID_ISFBand, NULL, CLSCTX_INPROC_SERVER,riid, ppv)) 38 #else 39 #define CISFBand_CreateInstance RSHELL_CISFBand_CreateInstance 40 #endif 41 42 #endif /* _SHELLBARS_PCH_ */ 43