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
a1b4ee88
Commit
a1b4ee88
authored
Jan 28, 2009
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jan 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Add missing interfaces.
parent
78cffc6e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
htmlcomment.c
dlls/mshtml/htmlcomment.c
+2
-2
htmltextnode.c
dlls/mshtml/htmltextnode.c
+2
-2
mshtml.idl
include/mshtml.idl
+0
-0
No files found.
dlls/mshtml/htmlcomment.c
View file @
a1b4ee88
...
...
@@ -32,10 +32,10 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
typedef
struc
t
{
struct
HTMLCommentElemen
t
{
HTMLElement
element
;
const
IHTMLCommentElementVtbl
*
lpIHTMLCommentElementVtbl
;
}
HTMLCommentElement
;
};
#define HTMLCOMMENT(x) ((IHTMLCommentElement*) &(x)->lpIHTMLCommentElementVtbl)
...
...
dlls/mshtml/htmltextnode.c
View file @
a1b4ee88
...
...
@@ -32,10 +32,10 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
typedef
struct
{
struct
HTMLDOMTextNode
{
HTMLDOMNode
node
;
const
IHTMLDOMTextNodeVtbl
*
lpIHTMLDOMTextNodeVtbl
;
}
HTMLDOMTextNode
;
};
#define HTMLTEXT(x) ((IHTMLDOMTextNode*) &(x)->lpIHTMLDOMTextNodeVtbl)
...
...
include/mshtml.idl
View file @
a1b4ee88
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