Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
067092c2
Commit
067092c2
authored
Dec 10, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 10, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: IPropertyBag stub implementation.
parent
dbbcbd59
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
132 additions
and
6 deletions
+132
-6
Makefile.in
dlls/mshtml/Makefile.in
+1
-0
pluginhost.c
dlls/mshtml/pluginhost.c
+1
-6
pluginhost.h
dlls/mshtml/pluginhost.h
+2
-0
propbag.c
dlls/mshtml/propbag.c
+128
-0
No files found.
dlls/mshtml/Makefile.in
View file @
067092c2
...
...
@@ -62,6 +62,7 @@ C_SRCS = \
omnavigator.c
\
persist.c
\
pluginhost.c
\
propbag.c
\
protocol.c
\
script.c
\
secmgr.c
\
...
...
dlls/mshtml/pluginhost.c
View file @
067092c2
...
...
@@ -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_p
aram_p
rop_bag
(
&
prop_bag
);
if
(
FAILED
(
hres
))
return
;
...
...
dlls/mshtml/pluginhost.h
View file @
067092c2
...
...
@@ -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
**
);
dlls/mshtml/propbag.c
0 → 100644
View file @
067092c2
/*
* 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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment