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
1a94d8f3
Commit
1a94d8f3
authored
May 19, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Stub support for IServerXMLHTTPRequest.
parent
82fe81c4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
factory.c
dlls/msxml3/factory.c
+8
-0
httprequest.c
dlls/msxml3/httprequest.c
+0
-0
msxml_private.h
dlls/msxml3/msxml_private.h
+1
-0
No files found.
dlls/msxml3/factory.c
View file @
1a94d8f3
...
...
@@ -280,6 +280,7 @@ static HRESULT DOMClassFactory_Create(const GUID *clsid, REFIID riid, void **ppv
static
ClassFactory
xmldoccf
=
{
{
&
ClassFactoryVtbl
},
XMLDocument_create
};
static
ClassFactory
httpreqcf
=
{
{
&
ClassFactoryVtbl
},
XMLHTTPRequest_create
};
static
ClassFactory
serverhttp
=
{
{
&
ClassFactoryVtbl
},
ServerXMLHTTP_create
};
static
ClassFactory
xsltemplatecf
=
{
{
&
ClassFactoryVtbl
},
XSLTemplate_create
};
static
ClassFactory
mxnsmanagercf
=
{
{
&
ClassFactoryVtbl
},
MXNamespaceManager_create
};
static
ClassFactory
xmlparsercf
=
{
{
&
ClassFactoryVtbl
},
XMLParser_create
};
...
...
@@ -340,6 +341,13 @@ HRESULT WINAPI DllGetClassObject( REFCLSID rclsid, REFIID riid, void **ppv )
{
cf
=
&
httpreqcf
.
IClassFactory_iface
;
}
else
if
(
IsEqualCLSID
(
rclsid
,
&
CLSID_ServerXMLHTTP
)
||
IsEqualCLSID
(
rclsid
,
&
CLSID_ServerXMLHTTP30
)
||
IsEqualCLSID
(
rclsid
,
&
CLSID_ServerXMLHTTP40
)
||
IsEqualCLSID
(
rclsid
,
&
CLSID_ServerXMLHTTP60
))
{
cf
=
&
serverhttp
.
IClassFactory_iface
;
}
else
if
(
IsEqualCLSID
(
rclsid
,
&
CLSID_XSLTemplate
)
||
IsEqualCLSID
(
rclsid
,
&
CLSID_XSLTemplate26
)
||
IsEqualCLSID
(
rclsid
,
&
CLSID_XSLTemplate30
)
||
...
...
dlls/msxml3/httprequest.c
View file @
1a94d8f3
This diff is collapsed.
Click to expand it.
dlls/msxml3/msxml_private.h
View file @
1a94d8f3
...
...
@@ -455,6 +455,7 @@ extern HRESULT XMLDocument_create(IUnknown*, void**) DECLSPEC_HIDDEN;
extern
HRESULT
SAXXMLReader_create
(
MSXML_VERSION
,
IUnknown
*
,
void
**
)
DECLSPEC_HIDDEN
;
extern
HRESULT
SAXAttributes_create
(
MSXML_VERSION
,
IUnknown
*
,
void
**
)
DECLSPEC_HIDDEN
;
extern
HRESULT
XMLHTTPRequest_create
(
IUnknown
*
,
void
**
)
DECLSPEC_HIDDEN
;
extern
HRESULT
ServerXMLHTTP_create
(
IUnknown
*
,
void
**
)
DECLSPEC_HIDDEN
;
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
;
...
...
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