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
25dc6c7c
Commit
25dc6c7c
authored
Oct 08, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml: Register XMLHTTP objects.
parent
7ccf6c28
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
4 deletions
+52
-4
httprequest.c
dlls/msxml3/httprequest.c
+0
-4
regsvr.c
dlls/msxml3/regsvr.c
+26
-0
regsvr.c
dlls/msxml4/regsvr.c
+13
-0
regsvr.c
dlls/msxml6/regsvr.c
+13
-0
No files found.
dlls/msxml3/httprequest.c
View file @
25dc6c7c
...
...
@@ -317,8 +317,6 @@ static HRESULT WINAPI BindStatusCallback_OnObjectAvailable(IBindStatusCallback *
return
E_NOTIMPL
;
}
#undef STATUSCLB_THIS
static
const
IBindStatusCallbackVtbl
BindStatusCallbackVtbl
=
{
BindStatusCallback_QueryInterface
,
BindStatusCallback_AddRef
,
...
...
@@ -402,8 +400,6 @@ static HRESULT WINAPI BSCHttpNegotiate_OnResponse(IHttpNegotiate *iface, DWORD c
return
S_OK
;
}
#undef HTTPNEG2_THIS
static
const
IHttpNegotiateVtbl
BSCHttpNegotiateVtbl
=
{
BSCHttpNegotiate_QueryInterface
,
BSCHttpNegotiate_AddRef
,
...
...
dlls/msxml3/regsvr.c
View file @
25dc6c7c
...
...
@@ -540,6 +540,22 @@ static struct regsvr_coclass const coclass_list[] = {
"Microsoft.XMLHTTP"
,
"1.0"
},
{
&
CLSID_XMLHTTP26
,
"XML HTTP 2.6"
,
NULL
,
"msxml3.dll"
,
"Apartment"
,
"Msxml2.XMLHTTP.2.6"
,
"2.6"
},
{
&
CLSID_XMLHTTP30
,
"XML HTTP 3.0"
,
NULL
,
"msxml3.dll"
,
"Apartment"
,
"Msxml2.XMLHTTP.3.0"
,
"3.0"
},
{
&
CLSID_XMLDSOControl
,
"XML Data Source Object"
,
NULL
,
...
...
@@ -701,6 +717,16 @@ static struct progid const progid_list[] = {
&
CLSID_XMLHTTPRequest
,
NULL
},
{
"Msxml2.XMLHTTP.2.6"
,
"XML HTTP 2.6"
,
&
CLSID_XMLHTTP26
,
NULL
},
{
"Msxml2.XMLHTTP.3.0"
,
"XML HTTP 3.0"
,
&
CLSID_XMLHTTP30
,
NULL
},
{
"Microsoft.XMLDSO"
,
"XML Data Source Object"
,
&
CLSID_XMLDSOControl
,
...
...
dlls/msxml4/regsvr.c
View file @
25dc6c7c
...
...
@@ -385,6 +385,14 @@ static struct regsvr_coclass const coclass_list[] = {
"Microsoft.FreeThreadedDOMDocument4.0"
,
"4.0"
},
{
&
CLSID_XMLHTTP40
,
"XML HTTP 4.0"
,
NULL
,
"msxml4.dll"
,
"Apartment"
,
"Msxml2.XMLHTTP.4.0"
,
"4.0"
},
{
NULL
}
/* list terminator */
};
...
...
@@ -397,6 +405,11 @@ static struct progid const progid_list[] = {
&
CLSID_DOMDocument40
,
NULL
},
{
"Msxml2.XMLHTTP.4.0"
,
"XML HTTP 4.0"
,
&
CLSID_XMLHTTP40
,
NULL
},
{
"Msxml2.SAXXMLReader.4.0"
,
"SAX XML Reader 4.0"
,
&
CLSID_SAXXMLReader40
,
...
...
dlls/msxml6/regsvr.c
View file @
25dc6c7c
...
...
@@ -346,6 +346,14 @@ static struct regsvr_coclass const coclass_list[] = {
"Msxml2.DOMDocument"
,
"6.0"
},
{
&
CLSID_XMLHTTP60
,
"XML HTTP 6.0"
,
NULL
,
"msxml6.dll"
,
"Apartment"
,
"Msxml2.XMLHTTP.6.0"
,
"6.0"
},
{
&
CLSID_XMLSchemaCache60
,
"XML Schema Cache 6.0"
,
NULL
,
...
...
@@ -390,6 +398,11 @@ static struct progid const progid_list[] = {
&
CLSID_DOMDocument60
,
NULL
},
{
"Msxml2.XMLHTTP.6.0"
,
"XML XMLHTTP 6.0"
,
&
CLSID_XMLHTTP60
,
NULL
},
{
"Msxml2.XMLSchemaCache.6.0"
,
"XML Schema Cache 6.0"
,
&
CLSID_XMLSchemaCache60
,
...
...
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