2002-02-05 18:11:17 +00:00
|
|
|
/*
|
|
|
|
* OLE32 proxy/stub handler
|
|
|
|
*
|
|
|
|
* Copyright 2002 Marcus Meissner
|
2008-10-18 17:20:29 +00:00
|
|
|
* Copyright 2001 Ove Kåven, TransGaming Technologies
|
2002-03-09 23:29:33 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-02-05 18:11:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2003-09-05 23:08:26 +00:00
|
|
|
#include <stdarg.h>
|
2002-02-05 18:11:17 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2004-10-07 03:06:48 +00:00
|
|
|
#define COBJMACROS
|
2003-01-07 20:36:20 +00:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2004-10-07 03:06:48 +00:00
|
|
|
|
2002-02-05 18:11:17 +00:00
|
|
|
#include "windef.h"
|
2003-09-05 23:08:26 +00:00
|
|
|
#include "winbase.h"
|
2003-09-09 19:39:31 +00:00
|
|
|
#include "winuser.h"
|
2002-02-05 18:11:17 +00:00
|
|
|
#include "objbase.h"
|
|
|
|
#include "ole2.h"
|
|
|
|
#include "rpc.h"
|
|
|
|
|
|
|
|
#include "compobj_private.h"
|
2005-05-19 14:22:14 +00:00
|
|
|
#include "moniker.h"
|
2008-10-11 11:30:08 +00:00
|
|
|
#include "comcat.h"
|
2002-02-05 18:11:17 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
2003-09-11 03:06:25 +00:00
|
|
|
* DllGetClassObject [OLE32.@]
|
2002-02-05 18:11:17 +00:00
|
|
|
*/
|
2005-08-08 17:35:28 +00:00
|
|
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv)
|
2002-02-05 18:11:17 +00:00
|
|
|
{
|
2009-11-23 15:07:49 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
2002-02-05 18:11:17 +00:00
|
|
|
*ppv = NULL;
|
2002-06-04 22:14:06 +00:00
|
|
|
if (IsEqualIID(rclsid,&CLSID_DfMarshal)&&(
|
|
|
|
IsEqualIID(iid,&IID_IClassFactory) ||
|
|
|
|
IsEqualIID(iid,&IID_IUnknown)
|
|
|
|
)
|
|
|
|
)
|
2002-02-05 18:11:17 +00:00
|
|
|
return MARSHAL_GetStandardMarshalCF(ppv);
|
2003-06-17 03:57:18 +00:00
|
|
|
if (IsEqualIID(rclsid,&CLSID_StdGlobalInterfaceTable) && (IsEqualIID(iid,&IID_IClassFactory) || IsEqualIID(iid,&IID_IUnknown)))
|
|
|
|
return StdGlobalInterfaceTable_GetFactory(ppv);
|
2005-05-19 14:22:14 +00:00
|
|
|
if (IsEqualCLSID(rclsid, &CLSID_FileMoniker))
|
|
|
|
return FileMonikerCF_Create(iid, ppv);
|
|
|
|
if (IsEqualCLSID(rclsid, &CLSID_ItemMoniker))
|
|
|
|
return ItemMonikerCF_Create(iid, ppv);
|
2006-05-08 11:36:13 +00:00
|
|
|
if (IsEqualCLSID(rclsid, &CLSID_AntiMoniker))
|
|
|
|
return AntiMonikerCF_Create(iid, ppv);
|
2006-05-08 11:41:06 +00:00
|
|
|
if (IsEqualCLSID(rclsid, &CLSID_CompositeMoniker))
|
|
|
|
return CompositeMonikerCF_Create(iid, ppv);
|
2006-05-08 14:55:14 +00:00
|
|
|
if (IsEqualCLSID(rclsid, &CLSID_ClassMoniker))
|
|
|
|
return ClassMonikerCF_Create(iid, ppv);
|
2008-01-31 14:45:10 +00:00
|
|
|
if (IsEqualCLSID(rclsid, &CLSID_PointerMoniker))
|
|
|
|
return PointerMonikerCF_Create(iid, ppv);
|
2008-10-11 11:30:08 +00:00
|
|
|
if (IsEqualGUID(rclsid, &CLSID_StdComponentCategoriesMgr))
|
|
|
|
return ComCatCF_Create(iid, ppv);
|
2003-06-17 03:57:18 +00:00
|
|
|
|
2009-11-23 15:07:49 +00:00
|
|
|
hr = OLE32_DllGetClassObject(rclsid, iid, ppv);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
return hr;
|
|
|
|
|
|
|
|
return Handler_DllGetClassObject(rclsid, iid, ppv);
|
2002-02-05 18:11:17 +00:00
|
|
|
}
|