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
f36d7616
Commit
f36d7616
authored
Aug 04, 2015
by
Alex Henrie
Committed by
Alexandre Julliard
Aug 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Stub out HTMLAreaElement.
parent
06ec2942
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
44 additions
and
0 deletions
+44
-0
Makefile.in
dlls/mshtml/Makefile.in
+1
-0
htmlarea.c
dlls/mshtml/htmlarea.c
+0
-0
htmlelem.c
dlls/mshtml/htmlelem.c
+2
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+3
-0
nsiface.idl
dlls/mshtml/nsiface.idl
+38
-0
No files found.
dlls/mshtml/Makefile.in
View file @
f36d7616
...
...
@@ -9,6 +9,7 @@ C_SRCS = \
editor.c
\
hlink.c
\
htmlanchor.c
\
htmlarea.c
\
htmlattr.c
\
htmlbody.c
\
htmlcomment.c
\
...
...
dlls/mshtml/htmlarea.c
0 → 100644
View file @
f36d7616
This diff is collapsed.
Click to expand it.
dlls/mshtml/htmlelem.c
View file @
f36d7616
...
...
@@ -39,6 +39,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
static
const
WCHAR
aW
[]
=
{
'A'
,
0
};
static
const
WCHAR
areaW
[]
=
{
'A'
,
'R'
,
'E'
,
'A'
,
0
};
static
const
WCHAR
bodyW
[]
=
{
'B'
,
'O'
,
'D'
,
'Y'
,
0
};
static
const
WCHAR
buttonW
[]
=
{
'B'
,
'U'
,
'T'
,
'T'
,
'O'
,
'N'
,
0
};
static
const
WCHAR
embedW
[]
=
{
'E'
,
'M'
,
'B'
,
'E'
,
'D'
,
0
};
...
...
@@ -69,6 +70,7 @@ typedef struct {
static
const
tag_desc_t
tag_descs
[]
=
{
{
aW
,
HTMLAnchorElement_Create
},
{
areaW
,
HTMLAreaElement_Create
},
{
bodyW
,
HTMLBodyElement_Create
},
{
buttonW
,
HTMLButtonElement_Create
},
{
embedW
,
HTMLEmbedElement_Create
},
...
...
dlls/mshtml/mshtml_private.h
View file @
f36d7616
...
...
@@ -76,6 +76,7 @@ typedef struct event_target_t event_target_t;
XDIID(DispCPlugins) \
XDIID(DispDOMChildrenCollection) \
XDIID(DispHTMLAnchorElement) \
XDIID(DispHTMLAreaElement) \
XDIID(DispHTMLAttributeCollection) \
XDIID(DispHTMLBody) \
XDIID(DispHTMLButtonElement) \
...
...
@@ -120,6 +121,7 @@ typedef struct event_target_t event_target_t;
XDIID(HTMLDocumentEvents) \
XDIID(HTMLElementEvents2) \
XIID(IHTMLAnchorElement) \
XIID(IHTMLAreaElement) \
XIID(IHTMLAttributeCollection) \
XIID(IHTMLAttributeCollection2) \
XIID(IHTMLAttributeCollection3) \
...
...
@@ -943,6 +945,7 @@ HRESULT HTMLDOMAttribute_Create(const WCHAR*,HTMLElement*,DISPID,HTMLDOMAttribut
HRESULT
HTMLElement_Create
(
HTMLDocumentNode
*
,
nsIDOMNode
*
,
BOOL
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLCommentElement_Create
(
HTMLDocumentNode
*
,
nsIDOMNode
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLAnchorElement_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLAreaElement_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLBodyElement_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLButtonElement_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLEmbedElement_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
...
...
dlls/mshtml/nsiface.idl
View file @
f36d7616
...
...
@@ -1942,6 +1942,44 @@ interface nsIDOMHTMLAnchorElement : nsISupports
[
object
,
uuid
(
40
c78026
-
36
dc
-
40
ca
-
9221
-
de73267e9e99
),
local
]
interface
nsIDOMHTMLAreaElement
:
nsISupports
{
nsresult
GetAlt
(
const
nsAString
*
aAlt
)
;
nsresult
SetAlt
(
nsAString
*
aAlt
)
;
nsresult
GetCoords
(
const
nsAString
*
aCoords
)
;
nsresult
SetCoords
(
nsAString
*
aCoords
)
;
nsresult
GetShape
(
const
nsAString
*
aShape
)
;
nsresult
SetShape
(
nsAString
*
aShape
)
;
nsresult
GetHref
(
const
nsAString
*
aHref
)
;
nsresult
SetHref
(
nsAString
*
aHref
)
;
nsresult
GetTarget
(
const
nsAString
*
aTarget
)
;
nsresult
SetTarget
(
nsAString
*
aTarget
)
;
nsresult
GetPing
(
const
nsAString
*
aPing
)
;
nsresult
SetPing
(
nsAString
*
aPing
)
;
nsresult
GetDownload
(
const
nsAString
*
aDownload
)
;
nsresult
SetDownload
(
nsAString
*
aDownload
)
;
nsresult
GetProtocol
(
const
nsAString
*
aProtocol
)
;
nsresult
SetProtocol
(
nsAString
*
aProtocol
)
;
nsresult
GetHost
(
const
nsAString
*
aHost
)
;
nsresult
SetHost
(
nsAString
*
aHost
)
;
nsresult
GetPort
(
const
nsAString
*
aPort
)
;
nsresult
SetPort
(
nsAString
*
aPort
)
;
nsresult
GetPathname
(
const
nsAString
*
aPathname
)
;
nsresult
SetPathname
(
nsAString
*
aPathname
)
;
nsresult
GetSearch
(
const
nsAString
*
aSearch
)
;
nsresult
SetSearch
(
nsAString
*
aSearch
)
;
nsresult
GetHash
(
const
nsAString
*
aHash
)
;
nsresult
SetHash
(
nsAString
*
aHash
)
;
nsresult
GetNoHref
(
const
nsAString
*
aNoHref
)
;
nsresult
SetNoHref
(
nsAString
*
aNoHref
)
;
nsresult
ToString
(
nsAString
*
_retval
)
;
}
[
object
,
uuid
(
ee50b7ab
-
0015
-
4
fbe
-
89
e0
-
e3feacd4ffde
),
local
]
...
...
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