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
3f162988
Commit
3f162988
authored
Nov 07, 2005
by
Huw Davies
Committed by
Alexandre Julliard
Nov 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add IXMLDOMParseError.
parent
14d9eec5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
0 deletions
+47
-0
xmldom.idl
include/xmldom.idl
+35
-0
xmldomdid.h
include/xmldomdid.h
+12
-0
No files found.
include/xmldom.idl
View file @
3f162988
...
...
@@ -613,6 +613,41 @@ interface IXMLDOMDocumentType : IXMLDOMNode
HRESULT
notations
(
[
out
,
retval
]
IXMLDOMNamedNodeMap
**
notationMap
)
;
}
;
[
local
,
object
,
odl
,
dual
,
oleautomation
,
/*
nonextensible
,
*/
helpstring
(
"structure for reporting parse errors"
),
pointer_default
(
unique
),
uuid
(
3
efaa426
-
272
f
-
11
d2
-
836
f
-
0000
f87a7782
)
]
interface
IXMLDOMParseError
:
IDispatch
{
[
propget
,
id
(
DISPID_VALUE
)
]
HRESULT
errorCode
(
[
retval
,
out
]
long
*
errCode
)
;
[
propget
,
id
(
DISPID_DOM_ERROR_URL
)
]
HRESULT
url
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propget
,
id
(
DISPID_DOM_ERROR_REASON
)
]
HRESULT
reason
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propget
,
id
(
DISPID_DOM_ERROR_SRCTEXT
)
]
HRESULT
srcText
(
[
retval
,
out
]
BSTR
*
p
)
;
[
propget
,
id
(
DISPID_DOM_ERROR_LINE
)
]
HRESULT
line
(
[
retval
,
out
]
long
*
lineNo
)
;
[
propget
,
id
(
DISPID_DOM_ERROR_LINEPOS
)
]
HRESULT
linepos
(
[
retval
,
out
]
long
*
linePos
)
;
[
propget
,
id
(
DISPID_DOM_ERROR_FILEPOS
)
]
HRESULT
filepos
(
[
retval
,
out
]
long
*
filePos
)
;
}
;
[
uuid
(
2933b
f90
-
7b36
-
11
d2
-
b20e
-
00
c04f983e60
)
...
...
include/xmldomdid.h
View file @
3f162988
...
...
@@ -171,4 +171,16 @@
#define DISPID_DOM_DOCUMENTTYPE_NOTATIONS 131
#define DISPID_DOM_DOCUMENTTYPE__TOP 132
#define DISPID_DOM_ERROR 0x000000b0
#define DISPID_DOM_ERROR_ERRORCODE 0x000000b1
#define DISPID_DOM_ERROR_URL 0x000000b2
#define DISPID_DOM_ERROR_REASON 0x000000b3
#define DISPID_DOM_ERROR_SRCTEXT 0x000000b4
#define DISPID_DOM_ERROR_LINE 0x000000b5
#define DISPID_DOM_ERROR_LINEPOS 0x000000b6
#define DISPID_DOM_ERROR_FILEPOS 0x000000b7
#define DISPID_DOM_ERROR__TOP 0x000000b8
#endif
/* __XMLDOMDID_H__ */
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