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
bf228d4a
Commit
bf228d4a
authored
Nov 29, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml.idl: Added param element's interfaces declaration.
parent
991104b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
129 additions
and
1 deletion
+129
-1
mshtmdid.h
include/mshtmdid.h
+12
-0
mshtml.idl
include/mshtml.idl
+117
-1
No files found.
include/mshtmdid.h
View file @
bf228d4a
...
...
@@ -2553,6 +2553,18 @@
#define DISPID_IHTMLOBJECTELEMENT4_IE8_CODEBASE DISPID_IE8_OBJECT+1
#define DISPID_IHTMLOBJECTELEMENT4_IE8_DATA DISPID_IE8_OBJECT+2
/* IHTMLParamElement */
#define DISPID_IHTMLPARAMELEMENT_NAME DISPID_PARAM+1
#define DISPID_IHTMLPARAMELEMENT_VALUE DISPID_PARAM+2
#define DISPID_IHTMLPARAMELEMENT_TYPE DISPID_PARAM+3
#define DISPID_IHTMLPARAMELEMENT_VALUETYPE DISPID_PARAM+4
/* IHTMLParamElement2 */
#define DISPID_IHTMLPARAMELEMENT2_NAME DISPID_PARAM+1
#define DISPID_IHTMLPARAMELEMENT2_TYPE DISPID_PARAM+3
#define DISPID_IHTMLPARAMELEMENT2_VALUE DISPID_PARAM+2
#define DISPID_IHTMLPARAMELEMENT2_IE8_VALUETYPE DISPID_IE8_PARAM
/* IHTMLFrameBase */
#define DISPID_IHTMLFRAMEBASE_SRC DISPID_FRAMESITE+0
#define DISPID_IHTMLFRAMEBASE_NAME STDPROPID_XOBJ_NAME
...
...
include/mshtml.idl
View file @
bf228d4a
...
...
@@ -15058,7 +15058,79 @@ interface IHTMLObjectElement : IDispatch
}
/*****************************************************************************
*
DispHTMLObjectElement
interface
*
IHTMLParamElement
interface
*/
[
odl
,
oleautomation
,
dual
,
uuid
(
3050
f83d
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
interface
IHTMLParamElement
:
IDispatch
{
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT_NAME
),
displaybind
,
bindable
]
HRESULT
name
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT_NAME
),
displaybind
,
bindable
]
HRESULT
name
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT_VALUE
),
displaybind
,
bindable
]
HRESULT
value
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT_VALUE
),
displaybind
,
bindable
]
HRESULT
value
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT_TYPE
),
displaybind
,
bindable
]
HRESULT
type
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT_TYPE
),
displaybind
,
bindable
]
HRESULT
type
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT_VALUETYPE
),
displaybind
,
bindable
]
HRESULT
valueType
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT_VALUETYPE
),
displaybind
,
bindable
]
HRESULT
valueType
(
[
retval
,
out
]
BSTR
*
p
)
;
}
/*****************************************************************************
*
IHTMLParamElement2
interface
*/
[
odl
,
oleautomation
,
dual
,
uuid
(
30510444
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
interface
IHTMLParamElement2
:
IDispatch
{
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT2_NAME
),
displaybind
,
bindable
]
HRESULT
name
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT2_NAME
),
displaybind
,
bindable
]
HRESULT
name
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT2_TYPE
),
displaybind
,
bindable
]
HRESULT
type
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT2_TYPE
),
displaybind
,
bindable
]
HRESULT
type
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT2_VALUE
),
displaybind
,
bindable
]
HRESULT
value
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT2_VALUE
),
displaybind
,
bindable
]
HRESULT
value
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT2_IE8_VALUETYPE
)
]
HRESULT
valueType
(
[
in
]
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT2_IE8_VALUETYPE
)
]
HRESULT
valueType
(
[
retval
,
out
]
BSTR
*
p
)
;
}
/*****************************************************************************
*
DispHTMLObjectElement
dispinterface
*/
[
hidden
,
...
...
@@ -15227,6 +15299,50 @@ methods:
}
/*****************************************************************************
*
DispHTMLParamElement
dispinterface
*/
[
hidden
,
uuid
(
3050
f590
-
98b5
-
11
cf
-
bb82
-
00
aa00bdce0b
)
]
dispinterface
DispHTMLParamElement
{
properties
:
methods
:
WINE_HTMLELEMENT_DISPINTERFACE_DECL
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT_NAME
),
displaybind
,
bindable
]
void
name
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT_NAME
),
displaybind
,
bindable
]
BSTR
name
()
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT_VALUE
),
displaybind
,
bindable
]
void
value
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT_VALUE
),
displaybind
,
bindable
]
BSTR
value
()
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT_TYPE
),
displaybind
,
bindable
]
void
type
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT_TYPE
),
displaybind
,
bindable
]
BSTR
type
()
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT_VALUETYPE
),
displaybind
,
bindable
]
void
valueType
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT_VALUETYPE
),
displaybind
,
bindable
]
BSTR
valueType
()
;
[
propput
,
id
(
DISPID_IHTMLPARAMELEMENT2_IE8_VALUETYPE
)
]
void
ie8_valueType
(
BSTR
v
)
;
[
propget
,
id
(
DISPID_IHTMLPARAMELEMENT2_IE8_VALUETYPE
)
]
BSTR
ie8_valueType
()
;
}
/*****************************************************************************
*
IHTMLFrameBase
interface
*/
[
...
...
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