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
7027ed45
Commit
7027ed45
authored
Jun 30, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Get rid of Mozilla ActiveX control dependency.
parent
346d5bc7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
10 deletions
+1
-10
factory.c
dlls/shdocvw/factory.c
+1
-7
shdocvw.h
dlls/shdocvw/shdocvw.h
+0
-2
shdocvw_main.c
dlls/shdocvw/shdocvw_main.c
+0
-0
wine.inf
tools/wine.inf
+0
-1
No files found.
dlls/shdocvw/factory.c
View file @
7027ed45
...
...
@@ -122,19 +122,13 @@ static const IClassFactoryVtbl WBCF_Vtbl =
*/
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
void
**
ppv
)
{
HRESULT
hres
;
static
IClassFactoryImpl
WB1ClassFactory
=
{
&
WBCF_Vtbl
,
WebBrowserV1_Create
};
static
IClassFactoryImpl
WB2ClassFactory
=
{
&
WBCF_Vtbl
,
WebBrowserV2_Create
};
TRACE
(
"
\n
"
);
if
(
IsEqualGUID
(
&
CLSID_WebBrowser
,
rclsid
))
{
hres
=
create_mozctl
(
riid
,
ppv
);
if
(
SUCCEEDED
(
hres
))
return
hres
;
if
(
IsEqualGUID
(
&
CLSID_WebBrowser
,
rclsid
))
return
IClassFactory_QueryInterface
(
FACTORY
(
&
WB2ClassFactory
),
riid
,
ppv
);
}
if
(
IsEqualGUID
(
&
CLSID_WebBrowser_V1
,
rclsid
))
return
IClassFactory_QueryInterface
(
FACTORY
(
&
WB1ClassFactory
),
riid
,
ppv
);
...
...
dlls/shdocvw/shdocvw.h
View file @
7027ed45
...
...
@@ -192,8 +192,6 @@ void deactivate_document(DocHost*);
void
call_sink
(
ConnectionPoint
*
,
DISPID
,
DISPPARAMS
*
);
HRESULT
navigate_url
(
DocHost
*
,
LPCWSTR
,
PBYTE
,
ULONG
,
LPWSTR
);
HRESULT
create_mozctl
(
REFIID
,
void
**
);
HRESULT
InternetExplorer_Create
(
IUnknown
*
,
REFIID
,
void
**
);
void
InternetExplorer_WebBrowser_Init
(
InternetExplorer
*
);
...
...
dlls/shdocvw/shdocvw_main.c
View file @
7027ed45
This diff is collapsed.
Click to expand it.
tools/wine.inf
View file @
7027ed45
...
...
@@ -288,7 +288,6 @@ HKLM,Software\Microsoft\Advanced INF Setup,,,""
HKLM,System\CurrentControlSet\Control\Session Manager,,,""
HKLM,System\CurrentControlSet\Control\VMM32Files,,,""
HKLM,System\CurrentControlSet\Services\VxD\MSTCP,,,""
HKCU,Software\Wine\shdocvw,"MozillaUrl",,"http://source.winehq.org/mozactivex"
HKCU,Software\Wine\MSHTML,"GeckoUrl",,"http://source.winehq.org/winegecko.php"
HKLM,HARDWARE\DEVICEMAP\PARALLEL PORTS,,,""
HKLM,HARDWARE\DEVICEMAP\SERIALCOMM,,,""
...
...
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