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
3780b082
Commit
3780b082
authored
Aug 30, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 30, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add xml DOMDocument60 definition.
parent
aaf78f1a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
90 additions
and
0 deletions
+90
-0
.gitignore
.gitignore
+1
-0
Makefile.in
include/Makefile.in
+2
-0
msxml6.idl
include/msxml6.idl
+60
-0
msxml6did.h
include/msxml6did.h
+27
-0
No files found.
.gitignore
View file @
3780b082
...
...
@@ -189,6 +189,7 @@ include/msinkaut.h
include/mstask.h
include/msxml.h
include/msxml2.h
include/msxml6.h
include/netcon.h
include/netfw.h
include/oaidl.h
...
...
include/Makefile.in
View file @
3780b082
...
...
@@ -61,6 +61,7 @@ PUBLIC_IDL_H_SRCS = \
mstask.idl
\
msxml.idl
\
msxml2.idl
\
msxml6.idl
\
netcon.idl
\
netfw.idl
\
oaidl.idl
\
...
...
@@ -379,6 +380,7 @@ SRCDIR_INCLUDES = \
msvcrt/wctype.h
\
mswsock.h
\
msxml2did.h
\
msxml6did.h
\
msxmldid.h
\
nb30.h
\
ndrtypes.h
\
...
...
include/msxml6.idl
0 → 100644
View file @
3780b082
/*
*
Copyright
(
C
)
2010
Nikolay
Sivov
for
CodeWeavers
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
include
<
msxml6did
.
h>
import
"msxml2.idl"
;
[
uuid
(
88
d96a05
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
DOMDocument60
{
[
default
]
interface
IXMLDOMDocument3
;
[
default
,
source
]
dispinterface
XMLDOMDocumentEvents
;
}
[
uuid
(
88
d96a06
-
f192
-
11
d4
-
a65f
-
0040963251
e5
),
]
coclass
FreeThreadedDOMDocument60
{
[
default
]
interface
IXMLDOMDocument3
;
[
default
,
source
]
dispinterface
XMLDOMDocumentEvents
;
}
[
local
,
object
,
dual
,
uuid
(
2933b
f96
-
7b36
-
11
d2
-
b20e
-
00
c04f983e60
),
oleautomation
,
]
interface
IXMLDOMDocument3
:
IXMLDOMDocument2
{
[
id
(
DISPID_XMLDOM_DOCUMENT3_VALIDATENODE
)
]
HRESULT
validateNode
(
[
in
]
IXMLDOMNode
*
node
,
[
out
,
retval
]
IXMLDOMParseError
**
error
)
;
[
id
(
DISPID_XMLDOM_DOCUMENT3_IMPORTNODE
)
]
HRESULT
importNode
(
[
in
]
IXMLDOMNode
*
node
,
[
in
]
VARIANT_BOOL
deep
,
[
out
,
retval
]
IXMLDOMNode
**
clone
)
;
}
include/msxml6did.h
0 → 100644
View file @
3780b082
/*
* Copyright (C) 2010 Nikolay Sivov for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __MSXML6DID_H__
#define __MSXML6DID_H__
#define DISPID_XMLDOM_DOCUMENT3 0x000000ce
#define DISPID_XMLDOM_DOCUMENT3_VALIDATENODE 0x000000cf
#define DISPID_XMLDOM_DOCUMENT3_IMPORTNODE 0x000000d0
#define DISPID_XMLDOM_DOCUMENT3__TOP 0x000000d1
#endif
/* __MSXML6DID_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