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
8bb4bde1
Commit
8bb4bde1
authored
Jan 19, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Convert coclass registration to the IRegistrar mechanism.
parent
2afe205e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
93 additions
and
136 deletions
+93
-136
Makefile.in
dlls/shdocvw/Makefile.in
+1
-0
factory.c
dlls/shdocvw/factory.c
+6
-33
shdocvw.inf
dlls/shdocvw/shdocvw.inf
+0
-95
shdocvw_v1.idl
dlls/shdocvw/shdocvw_v1.idl
+41
-0
exdisp.idl
include/exdisp.idl
+45
-8
No files found.
dlls/shdocvw/Makefile.in
View file @
8bb4bde1
...
...
@@ -49,5 +49,6 @@ SVG_SRCS = \
ietoolbar.svg
IDL_TLB_SRCS
=
shdocvw_v1.idl
IDL_R_SRCS
=
shdocvw_v1.idl
@MAKE_DLL_RULES@
dlls/shdocvw/factory.c
View file @
8bb4bde1
...
...
@@ -24,6 +24,7 @@
#include "shdocvw.h"
#include "winreg.h"
#include "advpub.h"
#include "rpcproxy.h"
#include "isguids.h"
#include "winver.h"
...
...
@@ -202,11 +203,6 @@ static HRESULT reg_install(LPCSTR section, STRTABLEA *strtable)
return
hres
;
}
static
const
GUID
CLSID_MicrosoftBrowserArchitecture
=
{
0xa5e46e3a
,
0x8849
,
0x11d1
,
{
0x9d
,
0x8c
,
0x00
,
0xc0
,
0x4f
,
0xc9
,
0x9d
,
0x61
}};
static
const
GUID
CLSID_MruLongList
=
{
0x53bd6b4e
,
0x3780
,
0x4693
,
{
0xaf
,
0xc3
,
0x71
,
0x61
,
0xc2
,
0xf3
,
0xee
,
0x9c
}};
#define INF_SET_CLSID(clsid) \
do \
{ \
...
...
@@ -219,26 +215,14 @@ static const GUID CLSID_MruLongList =
static
HRESULT
register_server
(
BOOL
doregister
)
{
STRTABLEA
strtable
;
STRENTRYA
pse
[
15
];
static
CLSID
const
*
clsids
[
15
];
STRENTRYA
pse
[
3
];
static
CLSID
const
*
clsids
[
3
];
unsigned
int
i
=
0
;
HRESULT
hres
;
INF_SET_CLSID
(
CUrlHistory
);
INF_SET_CLSID
(
Internet
);
INF_SET_CLSID
(
InternetExplorer
);
INF_SET_CLSID
(
InternetShortcut
);
INF_SET_CLSID
(
MicrosoftBrowserArchitecture
);
INF_SET_CLSID
(
MruLongList
);
INF_SET_CLSID
(
SearchAssistantOC
);
INF_SET_CLSID
(
ShellNameSpace
);
INF_SET_CLSID
(
ShellSearchAssistantOC
);
INF_SET_CLSID
(
ShellShellNameSpace
);
INF_SET_CLSID
(
ShellUIHelper
);
INF_SET_CLSID
(
ShellWindows
);
INF_SET_CLSID
(
TaskbarList
);
INF_SET_CLSID
(
WebBrowser
);
INF_SET_CLSID
(
WebBrowser_V1
);
for
(
i
=
0
;
i
<
sizeof
(
pse
)
/
sizeof
(
pse
[
0
]);
i
++
)
{
pse
[
i
].
pszValue
=
HeapAlloc
(
GetProcessHeap
(),
0
,
39
);
...
...
@@ -266,24 +250,13 @@ static HRESULT register_server(BOOL doregister)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
ITypeLib
*
typelib
;
HRESULT
hres
;
static
const
WCHAR
shdocvwW
[]
=
{
's'
,
'h'
,
'd'
,
'o'
,
'c'
,
'v'
,
'w'
,
'.'
,
'd'
,
'l'
,
'l'
,
0
};
hres
=
register_server
(
TRUE
);
hres
=
__wine_register_resources
(
shdocvw_hinstance
,
NULL
);
if
(
FAILED
(
hres
))
return
hres
;
hres
=
LoadTypeLibEx
(
shdocvwW
,
REGKIND_REGISTER
,
&
typelib
);
if
(
FAILED
(
hres
))
{
ERR
(
"Could not load typelib: %08x
\n
"
,
hres
);
return
hres
;
}
ITypeLib_Release
(
typelib
);
return
hres
;
return
register_server
(
TRUE
);
}
/***********************************************************************
...
...
@@ -297,7 +270,7 @@ HRESULT WINAPI DllUnregisterServer(void)
if
(
FAILED
(
hres
))
return
hres
;
return
UnRegisterTypeLib
(
&
LIBID_SHDocVw
,
1
,
1
,
LOCALE_SYSTEM_DEFAULT
,
SYS_WIN32
);
return
__wine_unregister_resources
(
shdocvw_hinstance
,
NULL
);
}
static
BOOL
check_native_ie
(
void
)
...
...
dlls/shdocvw/shdocvw.inf
View file @
8bb4bde1
...
...
@@ -23,113 +23,22 @@ HKCR,"CLSID\%CLSID_InternetExplorer%",,,"Internet Explorer(Ver 1.0)"
HKCR,"CLSID\%CLSID_InternetExplorer%\LocalServer32",,,"""%16422%\Internet Explorer\iexplore.exe"""
HKCR,"CLSID\%CLSID_InternetExplorer%\ProgID",,,"InternetExplorer.Application.1"
HKCR,"CLSID\%CLSID_InternetExplorer%\VersionIndependentProgID",,,"InternetExplorer.Application"
HKCR,"InternetExplorer.Application",,,"Internet Explorer(Ver 1.0)"
HKCR,"InternetExplorer.Application\CLSID",,,"%CLSID_InternetExplorer%"
HKCR,"InternetExplorer.Application\CurVer",,,"InternetExplorer.Application.1"
HKCR,"InternetExplorer.Application.1",,,"Internet Explorer(Ver 1.0)"
HKCR,"InternetExplorer.Application.1\CLSID",,,"%CLSID_InternetExplorer%"
HKCR,"CLSID\%CLSID_SearchAssistantOC%",,,"SearchAssistantOC"
HKCR,"CLSID\%CLSID_SearchAssistantOC%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_SearchAssistantOC%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_SearchAssistantOC%\ProgID",,,"SearchAssistantOC.SearchAssistantOC.1"
HKCR,"CLSID\%CLSID_SearchAssistantOC%\VersionIndependentProgID",,,"SearchAssistantOC.SearchAssistantOC"
HKCR,"SearchAssistantOC.SearchAssistantOC",,,"SearchAssistantOC"
HKCR,"SearchAssistantOC.SearchAssistantOC\CLSID",,,"%CLSID_SearchAssistantOC%"
HKCR,"SearchAssistantOC.SearchAssistantOC\CurVer",,,"SearchAssistantOC.SearchAssistantOC.1"
HKCR,"SearchAssistantOC.SearchAssistantOC.1",,,"SearchAssistantOC"
HKCR,"SearchAssistantOC.SearchAssistantOC.1\CLSID",,,"%CLSID_SearchAssistantOC%"
HKCR,"CLSID\%CLSID_ShellNameSpace%",,,"Shell Name Space"
HKCR,"CLSID\%CLSID_ShellNameSpace%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_ShellNameSpace%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_ShellNameSpace%\ProgID",,,"ShellNameSpace.ShellNameSpace.1"
HKCR,"CLSID\%CLSID_ShellNameSpace%\VersionIndependentProgID",,,"ShellNameSpace.ShellNameSpace"
HKCR,"CLSID\%CLSID_CUrlHistory%",,,"Microsoft Url History Service"
HKCR,"CLSID\%CLSID_CUrlHistory%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_CUrlHistory%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_MruLongList%",,,"MruLongList"
HKCR,"CLSID\%CLSID_MruLongList%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_MruLongList%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_ShellShellNameSpace%",,,"Shell Name Space"
HKCR,"CLSID\%CLSID_ShellShellNameSpace%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_ShellShellNameSpace%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_ShellShellNameSpace%\ProgID",,,"ShellNameSpace.ShellNameSpace.1"
HKCR,"CLSID\%CLSID_ShellShellNameSpace%\VersionIndependentProgID",,,"ShellNameSpace.ShellNameSpace"
HKCR,"CLSID\%CLSID_ShellUIHelper%",,,"Microsoft Shell UI Helper"
HKCR,"CLSID\%CLSID_ShellUIHelper%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_ShellUIHelper%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_ShellUIHelper%\ProgID",,,"Shell.UIHelper.1"
HKCR,"Shell.UIHelper",,,"Microsoft Shell UI Helper"
HKCR,"Shell.UIHelper\CLSID",,,"%CLSID_ShellUIHelper%"
HKCR,"Shell.UIHelper\CurVer",,,"Shell.UIHelper.2"
HKCR,"Shell.UIHelper.1",,,"Microsoft Shell UI Helper"
HKCR,"Shell.UIHelper.1\CLSID",,,"%CLSID_ShellUIHelper%"
HKCR,"CLSID\%CLSID_Internet%\DefaultIcon",,,"shdoclc.dll,-190"
HKCR,"CLSID\%CLSID_Internet%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_Internet%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_Internet%\Shell",,,"OpenHomePage"
HKCR,"CLSID\%CLSID_Internet%\Shell\OpenHomePage",,,"Open &Home Page"
HKCR,"CLSID\%CLSID_Internet%\Shell\OpenHomePage\Command",,,"""%16422%\Internet Explorer\iexplore.exe"""
HKCR,"CLSID\%CLSID_Internet%\ShellFolder",,2,"0x24"
HKCR,"CLSID\%CLSID_WebBrowser%",,,"Microsoft Web Browser"
HKCR,"CLSID\%CLSID_WebBrowser%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_WebBrowser%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_WebBrowser%\ProgID",,,"Shell.Explorer.2"
HKCR,"CLSID\%CLSID_WebBrowser%\VersionIndependentProgID",,,"Shell.Explorer"
HKCR,"Shell.Explorer",,,"Microsoft Web Browser"
HKCR,"Shell.Explorer\CLSID",,,"%CLSID_WebBrowser%"
HKCR,"Shell.Explorer\CurVer",,,"Shell.Explorer.2"
HKCR,"Shell.Explorer.2",,,"Microsoft Web Browser"
HKCR,"Shell.Explorer.2\CLSID",,,"%CLSID_WebBrowser%"
HKCR,"CLSID\%CLSID_ShellWindows%",,,"ShellWindows"
HKCR,"CLSID\%CLSID_ShellWindows%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_ShellWindows%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_MicrosoftBrowserArchitecture%",,,"Microsoft Browser Architecture"
HKCR,"CLSID\%CLSID_MicrosoftBrowserArchitecture%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_MicrosoftBrowserArchitecture%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_ShellSearchAssistantOC%",,,"SearchAssistantOC"
HKCR,"CLSID\%CLSID_ShellSearchAssistantOC%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_ShellSearchAssistantOC%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_ShellSearchAssistantOC%\ProgID",,,"SearchAssistantOC.SearchAssistantOC.1"
HKCR,"CLSID\%CLSID_ShellSearchAssistantOC%\VersionIndependentProgID",,,"SearchAssistantOC.SearchAssistantOC"
HKCR,"CLSID\%CLSID_WebBrowser_V1%",,,"Microsoft Web Browser Version 1"
HKCR,"CLSID\%CLSID_WebBrowser_V1%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_WebBrowser_V1%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_WebBrowser_V1%\ProgID",,,"Shell.Explorer.1"
HKCR,"CLSID\%CLSID_WebBrowser_V1%\VersionIndependentProgID",,,"Shell.Explorer"
HKCR,"Shell.Explorer.1",,,"Microsoft Web Browser"
HKCR,"Shell.Explorer.1\CLSID",,,"%CLSID_WebBrowser_V1%"
HKCR,"CLSID\%CLSID_InternetShortcut%",,,"Internet Shortcut"
HKCR,"CLSID\%CLSID_InternetShortcut%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_InternetShortcut%\InProcServer32","ThreadingModel",,"Apartment"
HKCR,"CLSID\%CLSID_InternetShortcut%\ProgID",,,"InternetShortcut"
HKCR,"CLSID\%CLSID_InternetShortcut%\shellex\MayChangeDefaultMenu",,16
HKCR,"InternetShortcut",,,"Internet Shortcut"
HKCR,"InternetShortcut","EditFlags",2,"2"
HKCR,"InternetShortcut","IsShortcut",,
HKCR,"InternetShortcut","NeverShowExt",,
HKCR,"InternetShortcut\CLSID",,,"%CLSID_InternetShortcut%"
HKCR,"InternetShortcut\DefaultIcon",,,"url.dll,0"
HKCR,"InternetShortcut\shell\open\command",,,"rundll32.exe shdocvw.dll,OpenURL %l"
HKCR,"InternetShortcut\shell\print\command",,,"rundll32.exe mshtml.dll,PrintHTML ""%1"""
HKCR,"InternetShortcut\shell\printto\command",,,"rundll32.exe mshtml.dll,PrintHTML ""%1"" ""%2"" ""%3"" ""%4"""
HKCR,"CLSID\%CLSID_TaskbarList%",,,"Task Bar Communication"
HKCR,"CLSID\%CLSID_TaskbarList%\InProcServer32",,,"%MODULE%"
HKCR,"CLSID\%CLSID_TaskbarList%\InProcServer32","ThreadingModel",,"Apartment"
[URL.Reg]
HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\DefaultPrefix",,,"http://"
HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","ftp",,"ftp://"
...
...
@@ -152,7 +61,3 @@ HKLM,"Software\Microsoft\Windows\CurrentVersion\App Paths\iexplore.exe","Path",,
HKLM,"Software\Microsoft\Internet Explorer","Build",,"86001"
HKLM,"Software\Microsoft\Internet Explorer","Version",,"8.0.6001.18702"
HKLM,"Software\Microsoft\Internet Explorer","W2kVersion",,"8.0.6001.18702"
[Strings]
MODULE="shdocvw.dll"
dlls/shdocvw/shdocvw_v1.idl
View file @
8bb4bde1
...
...
@@ -17,3 +17,44 @@
*/
#
include
"exdisp.idl"
[
threading
(
apartment
),
uuid
(
53b
d6b4e
-
3780
-
4693
-
afc3
-
7161
c2f3ee9c
)
]
coclass
MruLongList
{
}
[
helpstring
(
"Microsoft Browser Architecture"
),
threading
(
apartment
),
uuid
(
a5e46e3a
-
8849
-
11
d1
-
9
d8c
-
00
c04fc99d61
)
]
coclass
MicrosoftBrowserArchitecture
{
}
[
threading
(
apartment
),
uuid
(
871
c5380
-
42
a0
-
1069
-
a2ea
-
08002b30309
d
)
]
coclass
Internet
{
}
[
helpstring
(
"Microsoft Url History Service"
),
threading
(
apartment
),
uuid
(
3
c374a40
-
bae4
-
11
cf
-
bf7d
-
00
aa006946ee
)
]
coclass
CUrlHistory
{
interface
IUrlHistoryStg2
; }
[
helpstring
(
"Task Bar Communication"
),
threading
(
apartment
),
uuid
(
56
fdf344
-
fd6d
-
11
d0
-
958
a
-
006097
c9a090
)
]
coclass
TaskbarList
{
interface
ITaskbarList
; }
[
helpstring
(
"Internet Shortcut"
),
threading
(
apartment
),
progid
(
"InternetShortcut"
),
uuid
(
fbf23b40
-
e3f0
-
101b
-
8488
-
00
aa003e56f8
)
]
coclass
InternetShortcut
{
interface
IUniformResourceLocatorA
;
interface
IUniformResourceLocatorW
;
interface
IPersistFile
;
interface
IPropertySetStorage
;
}
include/exdisp.idl
View file @
8bb4bde1
...
...
@@ -26,6 +26,12 @@ import "docobj.idl";
#
include
<
olectl
.
h>
#
include
<
exdispid
.
h>
#
ifndef
__WIDL__
#
define
threading
(
model
)
#
define
progid
(
str
)
#
define
vi_progid
(
str
)
#
endif
cpp_quote
(
"#ifdef WINE_NO_UNICODE_MACROS"
)
cpp_quote
(
"#undef FindText"
)
cpp_quote
(
"#endif"
)
...
...
@@ -473,6 +479,10 @@ dispinterface DWebBrowserEvents2
}
[
helpstring
(
"Microsoft Web Browser Version 1"
),
threading
(
apartment
),
progid
(
"Shell.Explorer.1"
),
vi_progid
(
"Shell.Explorer"
),
uuid
(
eab22ac3
-
30
c1
-
11
cf
-
a7eb
-
0000
c05bae0b
),
control
]
...
...
@@ -485,6 +495,10 @@ coclass WebBrowser_V1
}
[
helpstring
(
"Microsoft Web Browser"
),
threading
(
apartment
),
progid
(
"Shell.Explorer.2"
),
vi_progid
(
"Shell.Explorer"
),
uuid
(
8856
f961
-
340
a
-
11
d0
-
a96b
-
00
c04fd705a2
),
control
]
...
...
@@ -497,6 +511,9 @@ coclass WebBrowser
}
[
helpstring
(
"Internet Explorer(Ver 1.0)"
),
progid
(
"InternetExplorer.Application.1"
),
vi_progid
(
"InternetExplorer.Application"
),
uuid
(
0002
df01
-
0000
-
0000
-
c000
-
000000000046
)
]
coclass
InternetExplorer
...
...
@@ -599,6 +616,7 @@ interface IShellWindows : IDispatch
}
[
threading
(
apartment
),
uuid
(
9b
a05972
-
f6a8
-
11
cf
-
a442
-
00
a0c90a8f39
)
]
coclass
ShellWindows
...
...
@@ -720,6 +738,10 @@ interface IShellUIHelper2 : IShellUIHelper {
}
[
helpstring
(
"Microsoft Shell UI Helper"
),
threading
(
apartment
),
progid
(
"Shell.UIHelper.1"
),
vi_progid
(
"Shell.UIHelper"
),
uuid
(
64
ab4bb7
-111e-11
d1
-
8
f79
-
00
c04fc2fbe1
)
]
coclass
ShellUIHelper
{
...
...
@@ -810,17 +832,25 @@ interface IShellNameSpace : IShellFavoritesNameSpace {
}
[
uuid
(
55136805
-
b2de
-
11
d1
-
b9f2
-
00
a0c98bc547
)
helpstring
(
"Shell Name Space"
),
threading
(
apartment
),
progid
(
"ShellNameSpace.ShellNameSpace.1"
),
vi_progid
(
"ShellNameSpace.ShellNameSpace"
),
uuid
(
2
f2f1f96
-
2b
c1
-
4b1
c
-
be28
-
ea3774f4676a
)
]
coclass
ShellNameSpace
{
coclass
Shell
Shell
NameSpace
{
[
default
]
interface
IShellNameSpace
;
[
default
,
source
]
dispinterface
DShellNameSpaceEvents
;
}
[
uuid
(
2
f2f1f96
-
2b
c1
-
4b1
c
-
be28
-
ea3774f4676a
)
helpstring
(
"Shell Name Space"
),
threading
(
apartment
),
progid
(
"ShellNameSpace.ShellNameSpace.1"
),
vi_progid
(
"ShellNameSpace.ShellNameSpace"
),
uuid
(
55136805
-
b2de
-
11
d1
-
b9f2
-
00
a0c98bc547
)
]
coclass
Shell
Shell
NameSpace
{
coclass
ShellNameSpace
{
[
default
]
interface
IShellNameSpace
;
[
default
,
source
]
dispinterface
DShellNameSpaceEvents
;
}
...
...
@@ -989,19 +1019,26 @@ dispinterface _SearchAssistantEvents {
}
[
uuid
(
b45ff030
-
4447
-
11
d2
-
85
de
-
00
C04fa35c89
),
helpstring
(
"SearchAssistantOC"
),
threading
(
apartment
),
progid
(
"SearchAssistantOC.SearchAssistantOC.1"
),
vi_progid
(
"SearchAssistantOC.SearchAssistantOC"
),
uuid
(
2
e71fd0f
-
aab1
-
42
c0
-
9146
-
6
d2c4edcf07d
),
hidden
]
coclass
SearchAssistantOC
{
coclass
S
hellS
earchAssistantOC
{
[
default
]
interface
ISearchAssistantOC3
;
[
default
,
source
]
dispinterface
_SearchAssistantEvents
;
}
[
uuid
(
2
e71fd0f
-
aab1
-
42
c0
-
9146
-
6
d2c4edcf07d
),
threading
(
apartment
),
progid
(
"SearchAssistantOC.SearchAssistantOC.1"
),
vi_progid
(
"SearchAssistantOC.SearchAssistantOC"
),
uuid
(
b45ff030
-
4447
-
11
d2
-
85
de
-
00
C04fa35c89
),
hidden
]
coclass
S
hellS
earchAssistantOC
{
coclass
SearchAssistantOC
{
[
default
]
interface
ISearchAssistantOC3
;
[
default
,
source
]
dispinterface
_SearchAssistantEvents
;
}
...
...
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