2014-02-04 12:11:51 +00:00
|
|
|
|
2014-04-07 10:12:41 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
|
|
|
// Disabling spammy warnings when compiling with /W4 or /Wall
|
|
|
|
#pragma warning(disable:4100) // unreferenced formal parameter
|
|
|
|
#pragma warning(disable:4201) // nonstandard extension used
|
|
|
|
#pragma warning(disable:4265) // class has virtual functions, but destructor is not virtual
|
|
|
|
#pragma warning(disable:4365) // signed/unsigned mismatch
|
|
|
|
#pragma warning(disable:4514) // unreferenced inline function
|
|
|
|
#pragma warning(disable:4710) // function was not inlined
|
|
|
|
#pragma warning(disable:4820) // padding added
|
|
|
|
#pragma warning(disable:4946) // reinterpret_cast between related classes
|
|
|
|
|
|
|
|
// Disable some warnings in headers only
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:4244) // possible loss of data
|
|
|
|
#pragma warning(disable:4512) // assignment operator could not be gernerated
|
|
|
|
#endif
|
|
|
|
|
2014-02-19 13:58:28 +00:00
|
|
|
#define USE_SYSTEM_MENUDESKBAR 0
|
2014-02-19 00:20:45 +00:00
|
|
|
#define USE_SYSTEM_MENUSITE 0
|
|
|
|
#define USE_SYSTEM_MENUBAND 0
|
|
|
|
|
2014-02-22 22:59:28 +00:00
|
|
|
#define WRAP_MENUDESKBAR 0
|
|
|
|
#define WRAP_MENUSITE 0
|
|
|
|
#define WRAP_MENUBAND 0
|
2014-02-26 14:05:55 +00:00
|
|
|
#define WRAP_TRAYPRIV 0
|
2014-02-17 17:16:55 +00:00
|
|
|
|
2014-07-09 00:42:05 +00:00
|
|
|
#define MERGE_FOLDERS 1
|
2014-02-26 11:13:23 +00:00
|
|
|
|
2014-02-04 12:11:51 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
|
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
2014-10-28 01:27:02 +00:00
|
|
|
//#define DEBUG_CCOMOBJECT
|
2014-10-28 21:40:50 +00:00
|
|
|
#define DEBUG_CCOMOBJECT_CREATION 1
|
|
|
|
#define DEBUG_CCOMOBJECT_DESTRUCTION 1
|
|
|
|
#define DEBUG_CCOMOBJECT_REFCOUNTING 1
|
2014-10-28 01:27:02 +00:00
|
|
|
|
2014-02-04 12:11:51 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <winreg.h>
|
|
|
|
#include <wingdi.h>
|
|
|
|
#include <winnls.h>
|
|
|
|
#include <wincon.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
#include <shlobj_undoc.h>
|
|
|
|
#include <shlwapi.h>
|
|
|
|
#include <shlguid_undoc.h>
|
|
|
|
#include <uxtheme.h>
|
|
|
|
#include <strsafe.h>
|
|
|
|
|
|
|
|
#include <atlbase.h>
|
|
|
|
#include <atlcom.h>
|
2014-10-20 21:09:55 +00:00
|
|
|
#include <undocshell.h>
|
|
|
|
|
2014-02-04 12:11:51 +00:00
|
|
|
#include <wine/debug.h>
|
|
|
|
|
2014-04-07 10:12:41 +00:00
|
|
|
#if _MSC_VER
|
|
|
|
// Restore warnings
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2014-02-04 12:11:51 +00:00
|
|
|
#define shell32_hInstance 0
|
2014-02-12 16:35:29 +00:00
|
|
|
|
2014-03-01 11:46:04 +00:00
|
|
|
extern "C" HRESULT WINAPI CStartMenu_Constructor(REFIID riid, void **ppv);
|
|
|
|
extern "C" HRESULT WINAPI CMenuDeskBar_Constructor(REFIID riid, LPVOID *ppv);
|
|
|
|
extern "C" HRESULT WINAPI CMenuSite_Constructor(REFIID riid, LPVOID *ppv);
|
|
|
|
extern "C" HRESULT WINAPI CMenuBand_Constructor(REFIID riid, LPVOID *ppv);
|
|
|
|
extern "C" HRESULT WINAPI CMenuDeskBar_Wrapper(IDeskBar * db, REFIID riid, LPVOID *ppv);
|
|
|
|
extern "C" HRESULT WINAPI CMenuSite_Wrapper(IBandSite * bs, REFIID riid, LPVOID *ppv);
|
|
|
|
extern "C" HRESULT WINAPI CMenuBand_Wrapper(IShellMenu * sm, REFIID riid, LPVOID *ppv);
|
2014-07-10 17:17:36 +00:00
|
|
|
extern "C" HRESULT WINAPI CMergedFolder_Constructor(REFIID riid, LPVOID *ppv);
|
2014-03-01 11:46:04 +00:00
|
|
|
extern "C" HRESULT WINAPI CStartMenuSite_Wrapper(ITrayPriv * trayPriv, REFIID riid, LPVOID *ppv);
|