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
6adfeeac
Commit
6adfeeac
authored
Aug 02, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Remove typelib registrations.
parent
0d37433d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
41 deletions
+11
-41
Makefile.in
dlls/mshtml/Makefile.in
+1
-3
main.c
dlls/mshtml/main.c
+1
-18
mshtml_classes.idl
dlls/mshtml/mshtml_classes.idl
+9
-0
mshtml_tlb.idl
dlls/mshtml/mshtml_tlb.idl
+0
-19
mshtml.idl
include/mshtml.idl
+0
-1
No files found.
dlls/mshtml/Makefile.in
View file @
6adfeeac
...
...
@@ -104,8 +104,6 @@ PO_SRCS = mshtml.rc
IDL_H_SRCS
=
nsiface.idl
IDL_R_SRCS
=
\
mshtml_classes.idl
\
mshtml_tlb.idl
IDL_R_SRCS
=
mshtml_classes.idl
@MAKE_DLL_RULES@
dlls/mshtml/main.c
View file @
6adfeeac
...
...
@@ -451,25 +451,8 @@ static HRESULT register_server(BOOL do_register)
for
(
i
=
0
;
i
<
sizeof
(
pse
)
/
sizeof
(
pse
[
0
]);
i
++
)
heap_free
(
pse
[
i
].
pszValue
);
if
(
FAILED
(
hres
))
{
ERR
(
"RegInstall failed: %08x
\n
"
,
hres
);
return
hres
;
}
if
(
do_register
)
{
ITypeLib
*
typelib
;
static
const
WCHAR
wszMSHTML
[]
=
{
'm'
,
's'
,
'h'
,
't'
,
'm'
,
'l'
,
'.'
,
't'
,
'l'
,
'b'
,
0
};
hres
=
LoadTypeLibEx
(
wszMSHTML
,
REGKIND_REGISTER
,
&
typelib
);
if
(
SUCCEEDED
(
hres
))
ITypeLib_Release
(
typelib
);
}
else
{
hres
=
UnRegisterTypeLib
(
&
LIBID_MSHTML
,
4
,
0
,
LOCALE_SYSTEM_DEFAULT
,
SYS_WIN32
);
}
if
(
FAILED
(
hres
))
ERR
(
"
typelib registration
failed: %08x
\n
"
,
hres
);
ERR
(
"
RegInstall
failed: %08x
\n
"
,
hres
);
return
hres
;
}
...
...
dlls/mshtml/mshtml_classes.idl
View file @
6adfeeac
...
...
@@ -285,6 +285,15 @@ coclass MHTMLDocument { }
coclass
ResProtocol
{
}
[
helpstring
(
"Microsoft Scriptlet Component"
),
progid
(
"ScriptBridge.ScriptBridge.1"
),
vi_progid
(
"ScriptBridge.ScriptBridge"
),
threading
(
apartment
),
uuid
(
ae24fdae
-
03
c6
-
11
d1
-
8b76
-
0080
c744f389
)
]
coclass
Scriptlet
{
}
[
helpstring
(
"Microsoft HTML Resource Pluggable Protocol"
),
threading
(
apartment
),
uuid
(
76
e67a63
-
06
e9
-
11
d2
-
a840
-
006008059382
)
...
...
dlls/mshtml/mshtml_tlb.idl
deleted
100644 → 0
View file @
0d37433d
/*
*
Copyright
2007
Jacek
Caban
for
CodeWeavers
*
*
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
"mshtml.idl"
include/mshtml.idl
View file @
6adfeeac
...
...
@@ -13700,7 +13700,6 @@ interface IWebBridge : IDispatch
helpstring
(
"Microsoft Scriptlet Component"
),
progid
(
"ScriptBridge.ScriptBridge.1"
),
vi_progid
(
"ScriptBridge.ScriptBridge"
),
threading
(
apartment
),
uuid
(
ae24fdae
-
03
c6
-
11
d1
-
8b76
-
0080
c744f389
)
]
coclass
Scriptlet
...
...
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