2017-04-09 13:51:39 +00:00
|
|
|
#ifndef _SHELLBARS_PCH_
|
|
|
|
#define _SHELLBARS_PCH_
|
|
|
|
|
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
#include <shlobj_undoc.h>
|
|
|
|
#include <shlguid_undoc.h>
|
|
|
|
#include <shdeprecated.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
#include <atlbase.h>
|
|
|
|
#include <atlcom.h>
|
|
|
|
#include <atlwin.h>
|
2017-10-22 15:59:01 +00:00
|
|
|
#include <atlsimpcoll.h>
|
2017-04-09 13:51:39 +00:00
|
|
|
#include <shlwapi.h>
|
|
|
|
#include <shlwapi_undoc.h>
|
|
|
|
#include <undocshell.h>
|
|
|
|
#include <shellutils.h>
|
2017-12-09 19:46:40 +00:00
|
|
|
#include <strsafe.h>
|
|
|
|
|
2017-04-09 13:51:39 +00:00
|
|
|
#include <wine/debug.h>
|
2017-12-09 19:46:40 +00:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
|
2017-04-09 13:51:39 +00:00
|
|
|
|
|
|
|
#include "../resource.h"
|
|
|
|
|
|
|
|
#include "CBandSite.h"
|
|
|
|
#include "CBandSiteMenu.h"
|
2017-10-16 20:56:34 +00:00
|
|
|
#include "CISFBand.h"
|
2017-04-09 13:51:39 +00:00
|
|
|
|
2017-10-20 13:02:13 +00:00
|
|
|
#define USE_SYSTEM_ISFBAND 0
|
|
|
|
|
|
|
|
#if USE_SYSTEM_ISFBAND
|
|
|
|
#define CISFBand_CreateInstance(riid, ppv) (CoCreateInstance(CLSID_ISFBand, NULL, CLSCTX_INPROC_SERVER,riid, ppv))
|
|
|
|
#else
|
|
|
|
#define CISFBand_CreateInstance RSHELL_CISFBand_CreateInstance
|
|
|
|
#endif
|
|
|
|
|
2017-12-09 19:46:40 +00:00
|
|
|
#endif /* _SHELLBARS_PCH_ */
|