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
62c37253
Commit
62c37253
authored
Nov 09, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml6: Add a typelib resource.
parent
d344e9a2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
1 deletion
+36
-1
.gitignore
.gitignore
+1
-0
Makefile.in
dlls/msxml6/Makefile.in
+3
-1
msxml6_tlb.idl
dlls/msxml6/msxml6_tlb.idl
+19
-0
regsvr.c
dlls/msxml6/regsvr.c
+10
-0
rsrc.rc
dlls/msxml6/rsrc.rc
+3
-0
No files found.
.gitignore
View file @
62c37253
...
...
@@ -95,6 +95,7 @@ dlls/msxml3/msxml3_v1.tlb
dlls/msxml3/xslpattern.tab.c
dlls/msxml3/xslpattern.tab.h
dlls/msxml3/xslpattern.yy.c
dlls/msxml6/msxml6_tlb.tlb
dlls/ole32/dcom.h
dlls/ole32/dcom_p.c
dlls/ole32/irot.h
...
...
dlls/msxml6/Makefile.in
View file @
62c37253
EXTRADEFS
=
-DCOM_NO_WINDOWS_H
MODULE
=
msxml6.dll
IMPORTS
=
ole32 advapi32
IMPORTS
=
ole
aut32 ole
32 advapi32
C_SRCS
=
\
main.c
\
...
...
@@ -8,4 +8,6 @@ C_SRCS = \
RC_SRCS
=
rsrc.rc
IDL_TLB_SRCS
=
msxml6_tlb.idl
@MAKE_DLL_RULES@
dlls/msxml6/msxml6_tlb.idl
0 → 100644
View file @
62c37253
/*
*
Copyright
2010
Alexandre
Julliard
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
include
"msxml6.idl"
dlls/msxml6/regsvr.c
View file @
62c37253
...
...
@@ -438,6 +438,7 @@ static struct progid const progid_list[] = {
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
static
const
WCHAR
msxml6W
[]
=
{
'm'
,
's'
,
'x'
,
'm'
,
'l'
,
'6'
,
'.'
,
'd'
,
'l'
,
'l'
,
0
};
HRESULT
hr
;
TRACE
(
"
\n
"
);
...
...
@@ -446,6 +447,13 @@ HRESULT WINAPI DllRegisterServer(void)
if
(
SUCCEEDED
(
hr
))
hr
=
register_progids
(
progid_list
);
if
(
SUCCEEDED
(
hr
))
{
ITypeLib
*
tl
;
hr
=
LoadTypeLibEx
(
msxml6W
,
REGKIND_REGISTER
,
&
tl
);
if
(
SUCCEEDED
(
hr
))
ITypeLib_Release
(
tl
);
}
return
hr
;
}
...
...
@@ -461,6 +469,8 @@ HRESULT WINAPI DllUnregisterServer(void)
hr
=
unregister_coclasses
(
coclass_list
);
if
(
SUCCEEDED
(
hr
))
hr
=
unregister_progids
(
progid_list
);
if
(
SUCCEEDED
(
hr
))
hr
=
UnRegisterTypeLib
(
&
LIBID_MSXML2
,
6
,
0
,
LOCALE_SYSTEM_DEFAULT
,
SYS_WIN32
);
return
hr
;
}
dlls/msxml6/rsrc.rc
View file @
62c37253
...
...
@@ -16,6 +16,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
/* @makedep: msxml6_tlb.tlb */
1 TYPELIB msxml6_tlb.tlb
#define WINE_OLESELFREGISTER
#define WINE_FILEDESCRIPTION_STR "Wine MSXML 6.0"
#define WINE_FILENAME_STR "msxml6.dll"
...
...
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