mshtml: IPropertyBag stub implementation.

This commit is contained in:
Jacek Caban 2010-12-10 16:35:40 +01:00 committed by Alexandre Julliard
parent dbbcbd59a5
commit 067092c223
4 changed files with 132 additions and 6 deletions

View File

@ -62,6 +62,7 @@ C_SRCS = \
omnavigator.c \
persist.c \
pluginhost.c \
propbag.c \
protocol.c \
script.c \
secmgr.c \

View File

@ -60,17 +60,12 @@ static BOOL check_load_safety(PluginHost *host)
return policy == URLPOLICY_ALLOW;
}
static HRESULT create_prop_bag(IPropertyBag **ret) {
*ret = NULL;
return S_OK;
}
static void load_prop_bag(PluginHost *host, IPersistPropertyBag *persist_prop_bag)
{
IPropertyBag *prop_bag;
HRESULT hres;
hres = create_prop_bag(&prop_bag);
hres = create_param_prop_bag(&prop_bag);
if(FAILED(hres))
return;

View File

@ -52,3 +52,5 @@ extern const IID IID_HTMLPluginContainer;
HRESULT create_plugin_host(HTMLDocumentNode*,nsIDOMElement*,IUnknown*,const CLSID*,PluginHost**);
void update_plugin_window(PluginHost*,HWND,const RECT*);
void detach_plugin_hosts(HTMLDocumentNode*);
HRESULT create_param_prop_bag(IPropertyBag**);

128
dlls/mshtml/propbag.c Normal file
View File

@ -0,0 +1,128 @@
/*
* Copyright 2010 Jacek Caban 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "shlobj.h"
#include "mshtml_private.h"
#include "pluginhost.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
IPropertyBag IPropertyBag_iface;
LONG ref;
} PropertyBag;
static inline PropertyBag *impl_from_IPropertyBag(IPropertyBag *iface)
{
return CONTAINING_RECORD(iface, PropertyBag, IPropertyBag_iface);
}
static HRESULT WINAPI PropertyBag_QueryInterface(IPropertyBag *iface, REFIID riid, void **ppv)
{
PropertyBag *This = impl_from_IPropertyBag(iface);
if(IsEqualGUID(&IID_IUnknown, riid)) {
TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
*ppv = &This->IPropertyBag_iface;
}else if(IsEqualGUID(&IID_IPropertyBag, riid)) {
TRACE("(%p)->(IID_IPropertyBag %p)\n", This, ppv);
*ppv = &This->IPropertyBag_iface;
}else {
WARN("Unsopported interface %s\n", debugstr_guid(riid));
*ppv = NULL;
return E_NOINTERFACE;
}
IUnknown_AddRef((IUnknown*)*ppv);
return S_OK;
}
static ULONG WINAPI PropertyBag_AddRef(IPropertyBag *iface)
{
PropertyBag *This = impl_from_IPropertyBag(iface);
LONG ref = InterlockedIncrement(&This->ref);
TRACE("(%p) ref=%d\n", This, ref);
return ref;
}
static ULONG WINAPI PropertyBag_Release(IPropertyBag *iface)
{
PropertyBag *This = impl_from_IPropertyBag(iface);
LONG ref = InterlockedDecrement(&This->ref);
TRACE("(%p) ref=%d\n", This, ref);
if(!ref)
heap_free(This);
return ref;
}
static HRESULT WINAPI PropertyBag_Read(IPropertyBag *iface, LPCOLESTR pszPropName, VARIANT *pVar, IErrorLog *pErrorLog)
{
PropertyBag *This = impl_from_IPropertyBag(iface);
FIXME("(%p)->(%s %p %p)\n", This, debugstr_w(pszPropName), pVar, pErrorLog);
return E_NOTIMPL;
}
static HRESULT WINAPI PropertyBag_Write(IPropertyBag *iface, LPCOLESTR pszPropName, VARIANT *pVar)
{
PropertyBag *This = impl_from_IPropertyBag(iface);
FIXME("(%p)->(%s %s)\n", This, debugstr_w(pszPropName), debugstr_variant(pVar));
return E_NOTIMPL;
}
static const IPropertyBagVtbl PropertyBagVtbl = {
PropertyBag_QueryInterface,
PropertyBag_AddRef,
PropertyBag_Release,
PropertyBag_Read,
PropertyBag_Write
};
HRESULT create_param_prop_bag(IPropertyBag **ret)
{
PropertyBag *prop_bag;
prop_bag = heap_alloc(sizeof(*prop_bag));
if(!prop_bag)
return E_OUTOFMEMORY;
prop_bag->IPropertyBag_iface.lpVtbl = &PropertyBagVtbl;
prop_bag->ref = 1;
*ret = &prop_bag->IPropertyBag_iface;
return S_OK;
}