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
2afa6020
Commit
2afa6020
authored
Jul 28, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Aug 01, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Add progids for MSXML.DOMDocument and MSXML.FreeThreadedDOMDocument.
Don't delete the progid key when unregistering coclasses - this is now done in unregister_progids.
parent
1933135f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
regsvr.c
dlls/msxml3/regsvr.c
+10
-5
No files found.
dlls/msxml3/regsvr.c
View file @
2afa6020
...
...
@@ -342,11 +342,6 @@ static HRESULT unregister_coclasses(struct regsvr_coclass const *list)
StringFromGUID2
(
list
->
clsid
,
buf
,
39
);
res
=
recursive_delete_keyW
(
coclass_key
,
buf
);
if
(
res
!=
ERROR_SUCCESS
)
goto
error_close_coclass_key
;
if
(
list
->
progid
)
{
res
=
recursive_delete_keyA
(
HKEY_CLASSES_ROOT
,
list
->
progid
);
if
(
res
!=
ERROR_SUCCESS
)
goto
error_close_coclass_key
;
}
}
error_close_coclass_key:
...
...
@@ -589,6 +584,11 @@ static struct progid const progid_list[] = {
&
CLSID_DOMDocument
,
NULL
},
{
"MSXML.DOMDocument"
,
"XML DOM Document"
,
&
CLSID_DOMDocument
,
"Microsoft.XMLDOM.1.0"
},
{
"Microsoft.FreeThreadedXMLDOM"
,
"Free threaded XML DOM Document"
,
&
CLSID_DOMFreeThreadedDocument
,
...
...
@@ -599,6 +599,11 @@ static struct progid const progid_list[] = {
&
CLSID_DOMFreeThreadedDocument
,
NULL
},
{
"MSXML.FreeThreadedDOMDocument"
,
"Free threaded XML DOM Document"
,
&
CLSID_DOMFreeThreadedDocument
,
"Microsoft.FreeThreadedXMLDOM.1.0"
},
{
"Microsoft.XMLHTTP"
,
"XML HTTP Request"
,
&
CLSID_XMLHTTPRequest
,
...
...
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