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
b80388fa
Commit
b80388fa
authored
Mar 12, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 12, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Added XMLView class stub.
parent
e562623a
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
2 deletions
+26
-2
Makefile.in
dlls/msxml3/Makefile.in
+2
-1
factory.c
dlls/msxml3/factory.c
+8
-1
msxml_private.h
dlls/msxml3/msxml_private.h
+1
-0
xmlparser.idl
dlls/msxml3/xmlparser.idl
+15
-0
xmlview.c
dlls/msxml3/xmlview.c
+0
-0
No files found.
dlls/msxml3/Makefile.in
View file @
b80388fa
...
...
@@ -35,7 +35,8 @@ C_SRCS = \
xdr.c
\
xmldoc.c
\
xmlelem.c
\
xmlparser.c
xmlparser.c
\
xmlview.c
LEX_SRCS
=
xslpattern.l
...
...
dlls/msxml3/factory.c
View file @
b80388fa
...
...
@@ -91,7 +91,9 @@ static const struct clsid_version_t clsid_versions_table[] =
{
&
CLSID_SAXAttributes
,
MSXML_DEFAULT
},
{
&
CLSID_SAXAttributes30
,
MSXML3
},
{
&
CLSID_SAXAttributes40
,
MSXML4
},
{
&
CLSID_SAXAttributes60
,
MSXML6
}
{
&
CLSID_SAXAttributes60
,
MSXML6
},
{
&
CLSID_XMLView
,
MSXML_DEFAULT
}
};
static
MSXML_VERSION
get_msxml_version
(
const
GUID
*
clsid
)
...
...
@@ -281,6 +283,7 @@ static ClassFactory httpreqcf = { { &ClassFactoryVtbl }, XMLHTTPRequest_create }
static
ClassFactory
xsltemplatecf
=
{
{
&
ClassFactoryVtbl
},
XSLTemplate_create
};
static
ClassFactory
mxnsmanagercf
=
{
{
&
ClassFactoryVtbl
},
MXNamespaceManager_create
};
static
ClassFactory
xmlparsercf
=
{
{
&
ClassFactoryVtbl
},
XMLParser_create
};
static
ClassFactory
xmlviewcf
=
{
{
&
ClassFactoryVtbl
},
XMLView_create
};
/******************************************************************
* DllGetClassObject (MSXML3.@)
...
...
@@ -371,6 +374,10 @@ HRESULT WINAPI DllGetClassObject( REFCLSID rclsid, REFIID riid, void **ppv )
{
cf
=
&
xmlparsercf
.
IClassFactory_iface
;
}
else
if
(
IsEqualCLSID
(
rclsid
,
&
CLSID_XMLView
)
)
{
cf
=
&
xmlviewcf
.
IClassFactory_iface
;
}
if
(
!
cf
)
return
CLASS_E_CLASSNOTAVAILABLE
;
...
...
dlls/msxml3/msxml_private.h
View file @
b80388fa
...
...
@@ -459,6 +459,7 @@ extern HRESULT XSLTemplate_create(IUnknown*, void**) DECLSPEC_HIDDEN;
extern
HRESULT
MXWriter_create
(
MSXML_VERSION
,
IUnknown
*
,
void
**
)
DECLSPEC_HIDDEN
;
extern
HRESULT
MXNamespaceManager_create
(
IUnknown
*
,
void
**
)
DECLSPEC_HIDDEN
;
extern
HRESULT
XMLParser_create
(
IUnknown
*
,
void
**
)
DECLSPEC_HIDDEN
;
extern
HRESULT
XMLView_create
(
IUnknown
*
,
void
**
)
DECLSPEC_HIDDEN
;
static
inline
const
CLSID
*
DOMDocument_version
(
MSXML_VERSION
v
)
{
...
...
dlls/msxml3/xmlparser.idl
View file @
b80388fa
...
...
@@ -364,3 +364,18 @@ coclass XMLParser30
{
[
default
]
interface
IXMLParser
;
}
;
[
helpstring
(
"XML Document"
),
threading
(
apartment
),
uuid
(
48123b
c4
-
99
d9
-
11
d1
-
a6b3
-
00
c04fd91555
),
progid
(
"xmlfile"
),
version
(
1.0
)
]
coclass
XMLView
{
interface
IPersistMoniker
;
interface
IPersistHistory
;
interface
IOleCommandTarget
;
interface
IOleObject
;
}
dlls/msxml3/xmlview.c
0 → 100644
View file @
b80388fa
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