Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
50487274
Commit
50487274
authored
Nov 20, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 20, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added HTMLFrameBase2::allowTransparency semi-stub implementation.
parent
d3714ba7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
htmlframebase.c
dlls/mshtml/htmlframebase.c
+9
-4
No files found.
dlls/mshtml/htmlframebase.c
View file @
50487274
...
...
@@ -667,15 +667,20 @@ static HRESULT WINAPI HTMLFrameBase2_get_readyState(IHTMLFrameBase2 *iface, BSTR
static
HRESULT
WINAPI
HTMLFrameBase2_put_allowTransparency
(
IHTMLFrameBase2
*
iface
,
VARIANT_BOOL
v
)
{
HTMLFrameBase
*
This
=
impl_from_IHTMLFrameBase2
(
iface
);
FIXME
(
"(%p)->(%x)
\n
"
,
This
,
v
);
return
E_NOTIMPL
;
FIXME
(
"(%p)->(%x) semi-stub
\n
"
,
This
,
v
);
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLFrameBase2_get_allowTransparency
(
IHTMLFrameBase2
*
iface
,
VARIANT_BOOL
*
p
)
{
HTMLFrameBase
*
This
=
impl_from_IHTMLFrameBase2
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
FIXME
(
"(%p)->(%p) semi-stub
\n
"
,
This
,
p
);
*
p
=
VARIANT_TRUE
;
return
S_OK
;
}
static
const
IHTMLFrameBase2Vtbl
HTMLFrameBase2Vtbl
=
{
...
...
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