Author: gadamopoulos
Date: Tue Feb 4 12:14:14 2014
New Revision: 61979
URL:
http://svn.reactos.org/svn/reactos?rev=61979&view=rev
Log:
[rshell.dll]
-cleanup the header from the remnants of my countless hacks that I tried with this module
Modified:
branches/shell-experiments/base/shell/rshell/precomp.h
Modified: branches/shell-experiments/base/shell/rshell/precomp.h
URL:
http://svn.reactos.org/svn/reactos/branches/shell-experiments/base/shell/rs…
==============================================================================
--- branches/shell-experiments/base/shell/rshell/precomp.h [iso-8859-1] (original)
+++ branches/shell-experiments/base/shell/rshell/precomp.h [iso-8859-1] Tue Feb 4
12:14:14 2014
@@ -29,27 +29,3 @@
#define shell32_hInstance 0
#define SMC_EXEC 4
extern "C" INT WINAPI Shell_GetCachedImageIndex(LPCWSTR szPath, INT nIndex,
UINT bSimulateDoc);
-extern "C" HRESULT CMenuSite_Constructor(REFIID riid, void **ppv);
-
-#define INTERFACE IExplorerHostCreator
-DECLARE_INTERFACE_(IExplorerHostCreator,IUnknown)
-{
- /*** IUnknown methods ***/
- STDMETHOD_(HRESULT,QueryInterface) (THIS_ REFIID riid, void** ppvObject) PURE;
- STDMETHOD_(ULONG,AddRef) (THIS) PURE;
- STDMETHOD_(ULONG,Release) (THIS) PURE;
- /*** IExplorerHostCreator ***/
- STDMETHOD_(HRESULT,CreateHost)(/*THIS,*/ const GUID* guid) PURE;
- STDMETHOD_(HRESULT,RunHost)(THIS) PURE;
-};
-#undef INTERFACE
-
-#if defined(COBJMACROS)
-/*** IUnknown methods ***/
-#define IExplorerHostCreator_QueryInterface(p,a,b)
(p)->lpVtbl->QueryInterface(p,a,b)
-#define IExplorerHostCreator_AddRef(p)
(p)->lpVtbl->AddRef(p)
-#define IExplorerHostCreator_Release(p)
(p)->lpVtbl->Release(p)
-/*** IExplorerHostCreator methods ***/
-#define IExplorerHostCreator_CreateHost(p,a)
(p)->lpVtbl->CreateHost(p,a)
-#define IExplorerHostCreator_RunHost(p)
(p)->lpVtbl->RunHost(p)
-#endif