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
d4a3e9c0
Commit
d4a3e9c0
authored
May 08, 2008
by
Aric Stewart
Committed by
Alexandre Julliard
May 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Do not do our iexplore.exe registration if native Internet Explorer is…
shdocvw: Do not do our iexplore.exe registration if native Internet Explorer is detected to be present.
parent
255eebe4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
2 deletions
+35
-2
Makefile.in
dlls/shdocvw/Makefile.in
+1
-1
factory.c
dlls/shdocvw/factory.c
+34
-1
No files found.
dlls/shdocvw/Makefile.in
View file @
d4a3e9c0
...
...
@@ -6,7 +6,7 @@ VPATH = @srcdir@
MODULE
=
shdocvw.dll
IMPORTLIB
=
shdocvw
IMPORTS
=
uuid shell32 shlwapi user32 advapi32 kernel32
DELAYIMPORTS
=
urlmon ole32 oleaut32
DELAYIMPORTS
=
version
urlmon ole32 oleaut32
C_SRCS
=
\
classinfo.c
\
...
...
dlls/shdocvw/factory.c
View file @
d4a3e9c0
...
...
@@ -26,6 +26,8 @@
#include "advpub.h"
#include "isguids.h"
#include "winver.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
shdocvw
);
...
...
@@ -287,8 +289,39 @@ HRESULT WINAPI DllUnregisterServer(void)
return
UnRegisterTypeLib
(
&
LIBID_SHDocVw
,
1
,
1
,
LOCALE_SYSTEM_DEFAULT
,
SYS_WIN32
);
}
static
BOOL
check_native_ie
(
void
)
{
static
const
WCHAR
cszPath
[]
=
{
'b'
,
'r'
,
'o'
,
'w'
,
's'
,
'e'
,
'u'
,
'i'
,
'.'
,
'd'
,
'l'
,
'l'
,
0
};
DWORD
handle
,
size
;
size
=
GetFileVersionInfoSizeW
(
cszPath
,
&
handle
);
if
(
size
)
{
LPVOID
buf
;
LPWSTR
lpFileDescription
;
UINT
dwBytes
;
static
const
WCHAR
cszFD
[]
=
{
'\\'
,
'S'
,
't'
,
'r'
,
'i'
,
'n'
,
'g'
,
'F'
,
'i'
,
'l'
,
'e'
,
'I'
,
'n'
,
'f'
,
'o'
,
'\\'
,
'0'
,
'4'
,
'0'
,
'9'
,
'0'
,
'4'
,
'e'
,
'4'
,
'\\'
,
'F'
,
'i'
,
'l'
,
'e'
,
'D'
,
'e'
,
's'
,
'c'
,
'r'
,
'i'
,
'p'
,
't'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
cszWine
[]
=
{
'W'
,
'i'
,
'n'
,
'e'
,
0
};
buf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
GetFileVersionInfoW
(
cszPath
,
0
,
size
,
buf
);
if
(
VerQueryValueW
(
buf
,
cszFD
,
(
LPVOID
*
)
&
lpFileDescription
,
&
dwBytes
)
&&
strstrW
(
lpFileDescription
,
cszWine
))
return
FALSE
;
}
return
TRUE
;
}
DWORD
register_iexplore
(
BOOL
doregister
)
{
HRESULT
hres
=
reg_install
(
doregister
?
"RegisterIE"
:
"UnregisterIE"
,
NULL
);
HRESULT
hres
;
if
(
check_native_ie
())
{
TRACE
(
"Native IE detected, not doing registration
\n
"
);
return
S_OK
;
}
hres
=
reg_install
(
doregister
?
"RegisterIE"
:
"UnregisterIE"
,
NULL
);
return
!
SUCCEEDED
(
hres
);
}
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