2002-05-05 21:40:57 +02:00
|
|
|
/*
|
|
|
|
* Implementation of IProvideClassInfo interfaces for IE Web Browser control
|
|
|
|
*
|
|
|
|
* Copyright 2001 John R. Sheets (for CodeWeavers)
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2002-05-05 21:40:57 +02:00
|
|
|
#include <string.h>
|
2002-12-05 21:33:07 +01:00
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2002-12-05 21:33:07 +01:00
|
|
|
#include "winbase.h"
|
2002-05-05 21:40:57 +02:00
|
|
|
#include "shdocvw.h"
|
2002-12-05 21:33:07 +01:00
|
|
|
#include "wine/debug.h"
|
2002-05-05 21:40:57 +02:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Implement the IProvideClassInfo interface
|
|
|
|
*
|
|
|
|
* FIXME: Should we just pass in the IProvideClassInfo2 methods rather
|
|
|
|
* reimplementing them here?
|
|
|
|
*/
|
|
|
|
|
|
|
|
static HRESULT WINAPI WBPCI_QueryInterface(LPPROVIDECLASSINFO iface,
|
|
|
|
REFIID riid, LPVOID *ppobj)
|
|
|
|
{
|
2005-01-27 11:43:53 +01:00
|
|
|
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
if (ppobj == NULL) return E_POINTER;
|
2002-05-05 21:40:57 +02:00
|
|
|
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI WBPCI_AddRef(LPPROVIDECLASSINFO iface)
|
|
|
|
{
|
2005-01-27 11:43:53 +01:00
|
|
|
SHDOCVW_LockModule();
|
2005-01-14 17:02:20 +01:00
|
|
|
|
2005-01-27 11:43:53 +01:00
|
|
|
return 2; /* non-heap based object */
|
2002-05-05 21:40:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI WBPCI_Release(LPPROVIDECLASSINFO iface)
|
|
|
|
{
|
2005-01-27 11:43:53 +01:00
|
|
|
SHDOCVW_UnlockModule();
|
2005-01-14 17:02:20 +01:00
|
|
|
|
2005-01-27 11:43:53 +01:00
|
|
|
return 1; /* non-heap based object */
|
2002-05-05 21:40:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return an ITypeInfo interface to retrieve type library info about
|
|
|
|
* this control.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI WBPCI_GetClassInfo(LPPROVIDECLASSINFO iface, LPTYPEINFO *ppTI)
|
|
|
|
{
|
|
|
|
FIXME("stub: LPTYPEINFO = %p\n", *ppTI);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* IProvideClassInfo virtual function table for IE Web Browser component
|
|
|
|
*/
|
|
|
|
|
2005-06-06 21:50:35 +02:00
|
|
|
static const IProvideClassInfoVtbl WBPCI_Vtbl =
|
2002-05-05 21:40:57 +02:00
|
|
|
{
|
|
|
|
WBPCI_QueryInterface,
|
|
|
|
WBPCI_AddRef,
|
|
|
|
WBPCI_Release,
|
|
|
|
WBPCI_GetClassInfo
|
|
|
|
};
|
|
|
|
|
2005-01-27 11:43:53 +01:00
|
|
|
IProvideClassInfoImpl SHDOCVW_ProvideClassInfo = { &WBPCI_Vtbl};
|
2002-05-05 21:40:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Implement the IProvideClassInfo2 interface (inherits from
|
|
|
|
* IProvideClassInfo).
|
|
|
|
*/
|
|
|
|
|
|
|
|
static HRESULT WINAPI WBPCI2_QueryInterface(LPPROVIDECLASSINFO2 iface,
|
|
|
|
REFIID riid, LPVOID *ppobj)
|
|
|
|
{
|
2005-01-27 11:43:53 +01:00
|
|
|
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
2002-05-05 21:40:57 +02:00
|
|
|
|
2005-01-27 11:43:53 +01:00
|
|
|
if (ppobj == NULL) return E_POINTER;
|
|
|
|
|
2002-05-05 21:40:57 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI WBPCI2_AddRef(LPPROVIDECLASSINFO2 iface)
|
|
|
|
{
|
2005-01-27 11:43:53 +01:00
|
|
|
SHDOCVW_LockModule();
|
2002-05-05 21:40:57 +02:00
|
|
|
|
2005-01-27 11:43:53 +01:00
|
|
|
return 2; /* non-heap based object */
|
2002-05-05 21:40:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI WBPCI2_Release(LPPROVIDECLASSINFO2 iface)
|
|
|
|
{
|
2005-01-27 11:43:53 +01:00
|
|
|
SHDOCVW_UnlockModule();
|
2005-01-14 17:02:20 +01:00
|
|
|
|
2005-01-27 11:43:53 +01:00
|
|
|
return 1; /* non-heap based object */
|
2002-05-05 21:40:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return an ITypeInfo interface to retrieve type library info about
|
|
|
|
* this control.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI WBPCI2_GetClassInfo(LPPROVIDECLASSINFO2 iface, LPTYPEINFO *ppTI)
|
|
|
|
{
|
|
|
|
FIXME("stub: LPTYPEINFO = %p\n", *ppTI);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the IID for generic default event callbacks. This IID will
|
|
|
|
* in theory be used to later query for an IConnectionPoint to connect
|
2004-02-09 23:07:42 +01:00
|
|
|
* an event sink (callback implementation in the OLE control site)
|
2002-05-05 21:40:57 +02:00
|
|
|
* to this control.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI WBPCI2_GetGUID(LPPROVIDECLASSINFO2 iface,
|
|
|
|
DWORD dwGuidKind, GUID *pGUID)
|
|
|
|
{
|
|
|
|
FIXME("stub: dwGuidKind = %ld, pGUID = %s\n", dwGuidKind, debugstr_guid(pGUID));
|
|
|
|
|
|
|
|
if (dwGuidKind != GUIDKIND_DEFAULT_SOURCE_DISP_IID)
|
|
|
|
{
|
|
|
|
FIXME ("Requested unsupported GUID type: %ld\n", dwGuidKind);
|
|
|
|
return E_FAIL; /* Is there a better return type here? */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: Returning IPropertyNotifySink interface, but should really
|
|
|
|
* return a more generic event set (???) dispinterface.
|
|
|
|
* However, this hack, allows a control site to return with success
|
|
|
|
* (MFC's COleControlSite falls back to older IProvideClassInfo interface
|
|
|
|
* if GetGUID() fails to return a non-NULL GUID).
|
|
|
|
*/
|
|
|
|
memcpy(pGUID, &IID_IPropertyNotifySink, sizeof(GUID));
|
|
|
|
FIXME("Wrongly returning IPropertyNotifySink interface %s\n",
|
|
|
|
debugstr_guid(pGUID));
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* IProvideClassInfo virtual function table for IE Web Browser component
|
|
|
|
*/
|
|
|
|
|
2005-06-06 21:50:35 +02:00
|
|
|
static const IProvideClassInfo2Vtbl WBPCI2_Vtbl =
|
2002-05-05 21:40:57 +02:00
|
|
|
{
|
|
|
|
WBPCI2_QueryInterface,
|
|
|
|
WBPCI2_AddRef,
|
|
|
|
WBPCI2_Release,
|
|
|
|
WBPCI2_GetClassInfo,
|
|
|
|
WBPCI2_GetGUID
|
|
|
|
};
|
|
|
|
|
2005-01-27 11:43:53 +01:00
|
|
|
IProvideClassInfo2Impl SHDOCVW_ProvideClassInfo2 = { &WBPCI2_Vtbl};
|