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
33763656
Commit
33763656
authored
Dec 08, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml6: Convert dll registration to the IRegistrar mechanism.
parent
2dc85894
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
58 additions
and
4 deletions
+58
-4
Makefile.in
dlls/msxml6/Makefile.in
+2
-2
main.c
dlls/msxml6/main.c
+23
-2
regsvr.c
dlls/msxml6/regsvr.c
+0
-0
msxml6.idl
include/msxml6.idl
+33
-0
No files found.
dlls/msxml6/Makefile.in
View file @
33763656
...
...
@@ -3,11 +3,11 @@ MODULE = msxml6.dll
IMPORTS
=
oleaut32 ole32 advapi32
C_SRCS
=
\
main.c
\
regsvr.c
main.c
RC_SRCS
=
rsrc.rc
IDL_R_SRCS
=
msxml6_tlb.idl
IDL_TLB_SRCS
=
msxml6_tlb.idl
@MAKE_DLL_RULES@
dlls/msxml6/main.c
View file @
33763656
...
...
@@ -21,19 +21,40 @@
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "objbase.h"
#include "rpcproxy.h"
static
HINSTANCE
instance
;
HRESULT
WINAPI
DllCanUnloadNow
(
void
)
{
return
S_FALSE
;
}
BOOL
WINAPI
DllMain
(
HINSTANCE
instance
,
DWORD
reason
,
LPVOID
reserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
h
instance
,
DWORD
reason
,
LPVOID
reserved
)
{
switch
(
reason
)
{
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
instance
);
instance
=
hinstance
;
DisableThreadLibraryCalls
(
hinstance
);
break
;
}
return
TRUE
;
}
/***********************************************************************
* DllRegisterServer (MSXML6.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
return
__wine_register_resources
(
instance
,
NULL
);
}
/***********************************************************************
* DllUnregisterServer (MSXML6.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
return
__wine_unregister_resources
(
instance
,
NULL
);
}
dlls/msxml6/regsvr.c
deleted
100644 → 0
View file @
2dc85894
This diff is collapsed.
Click to expand it.
include/msxml6.idl
View file @
33763656
...
...
@@ -1445,6 +1445,9 @@ coclass DOMDocument40
}
[
helpstring
(
"XML DOM Document 6.0"
),
progid
(
"Msxml2.DOMDocument.6.0"
),
threading
(
both
),
uuid
(
88
d96a05
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
DOMDocument60
...
...
@@ -1490,6 +1493,9 @@ coclass FreeThreadedDOMDocument40
}
[
helpstring
(
"Free threaded XML DOM Document 6.0"
),
progid
(
"Msxml2.FreeThreadedDOMDocument.6.0"
),
threading
(
both
),
uuid
(
88
d96a06
-
f192
-
11
d4
-
a65f
-
0040963251
e5
),
]
coclass
FreeThreadedDOMDocument60
...
...
@@ -1531,6 +1537,9 @@ coclass XMLHTTP40
}
[
helpstring
(
"XML HTTP 6.0"
),
progid
(
"Msxml2.XMLHTTP.6.0"
),
threading
(
apartment
),
uuid
(
88
d96a0a
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
XMLHTTP60
...
...
@@ -1563,6 +1572,9 @@ coclass ServerXMLHTTP40
}
[
helpstring
(
"Server XML HTTP 6.0"
),
progid
(
"Msxml2.ServerXMLHTTP.6.0"
),
threading
(
apartment
),
uuid
(
88
d96a0b
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
ServerXMLHTTP60
...
...
@@ -1603,6 +1615,9 @@ coclass XMLSchemaCache40
}
[
helpstring
(
"XML Schema Cache 6.0"
),
progid
(
"Msxml2.XMLSchemaCache.6.0"
),
threading
(
both
),
uuid
(
88
d96a07
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
XMLSchemaCache60
...
...
@@ -1643,6 +1658,9 @@ coclass XSLTemplate40
}
[
helpstring
(
"XSL Template 6.0"
),
progid
(
"Msxml2.XSLTemplate.6.0"
),
threading
(
both
),
uuid
(
88
d96a08
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
XSLTemplate60
...
...
@@ -3136,6 +3154,9 @@ coclass SAXXMLReader40
}
[
helpstring
(
"SAX XML Reader 6.0"
),
progid
(
"Msxml2.SAXXMLReader.6.0"
),
threading
(
both
),
uuid
(
88
d96a0c
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
SAXXMLReader60
...
...
@@ -3205,6 +3226,9 @@ coclass MXHTMLWriter40
}
[
helpstring
(
"MXHTMLWriter 6.0"
),
progid
(
"Msxml2.MXHTMLWriter.6.0"
),
threading
(
both
),
uuid
(
88
d96a10
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
MXHTMLWriter60
...
...
@@ -3285,6 +3309,9 @@ coclass MXXMLWriter40
}
[
helpstring
(
"MXXMLWriter 6.0"
),
progid
(
"Msxml2.MXXMLWriter.6.0"
),
threading
(
both
),
uuid
(
88
d96a0f
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
MXXMLWriter60
...
...
@@ -3323,6 +3350,9 @@ coclass MXNamespaceManager40
}
[
helpstring
(
"MXNamespaceManager 6.0"
),
progid
(
"Msxml2.MXNamespaceManager.6.0"
),
threading
(
both
),
uuid
(
88
d96a11
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
MXNamespaceManager60
...
...
@@ -3362,6 +3392,9 @@ coclass SAXAttributes40
}
[
helpstring
(
"SAXAttributes 6.0"
),
progid
(
"Msxml2.SAXAttributes.6.0"
),
threading
(
both
),
uuid
(
88
d96a0e
-
f192
-
11
d4
-
a65f
-
0040963251
e5
)
]
coclass
SAXAttributes60
...
...
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