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
e22b5783
Commit
e22b5783
authored
Jul 28, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLSyle6 stub implementation.
parent
8925638f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
327 additions
and
0 deletions
+327
-0
htmlstyle.c
dlls/mshtml/htmlstyle.c
+3
-0
htmlstyle.h
dlls/mshtml/htmlstyle.h
+1
-0
htmlstyle3.c
dlls/mshtml/htmlstyle3.c
+323
-0
No files found.
dlls/mshtml/htmlstyle.c
View file @
e22b5783
...
...
@@ -659,6 +659,9 @@ static HRESULT WINAPI HTMLStyle_QueryInterface(IHTMLStyle *iface, REFIID riid, v
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLStyle5
,
riid
))
{
TRACE
(
"(%p)->(IID_IHTMLStyle5 %p)
\n
"
,
This
,
ppv
);
*
ppv
=
&
This
->
IHTMLStyle5_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLStyle6
,
riid
))
{
TRACE
(
"(%p)->(IID_IHTMLStyle6 %p)
\n
"
,
This
,
ppv
);
*
ppv
=
&
This
->
IHTMLStyle6_iface
;
}
else
if
(
dispex_query_interface
(
&
This
->
dispex
,
riid
,
ppv
))
{
return
*
ppv
?
S_OK
:
E_NOINTERFACE
;
}
...
...
dlls/mshtml/htmlstyle.h
View file @
e22b5783
...
...
@@ -23,6 +23,7 @@ struct HTMLStyle {
IHTMLStyle3
IHTMLStyle3_iface
;
IHTMLStyle4
IHTMLStyle4_iface
;
IHTMLStyle5
IHTMLStyle5_iface
;
IHTMLStyle6
IHTMLStyle6_iface
;
LONG
ref
;
...
...
dlls/mshtml/htmlstyle3.c
View file @
e22b5783
This diff is collapsed.
Click to expand it.
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