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
b07bc345
Commit
b07bc345
authored
Dec 03, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winetest: Remove no longer needed Gecko check.
parent
412f4a60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
21 deletions
+0
-21
main.c
programs/winetest/main.c
+0
-21
No files found.
programs/winetest/main.c
View file @
b07bc345
...
@@ -175,21 +175,6 @@ static BOOL is_native_dll( HMODULE module )
...
@@ -175,21 +175,6 @@ static BOOL is_native_dll( HMODULE module )
return
TRUE
;
return
TRUE
;
}
}
/* check if Gecko is present, trying to trigger the install if not */
static
BOOL
gecko_check
(
void
)
{
IHTMLDocument2
*
doc
;
IHTMLElement
*
body
;
BOOL
ret
=
FALSE
;
CoInitialize
(
NULL
);
if
(
FAILED
(
CoCreateInstance
(
&
CLSID_HTMLDocument
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IHTMLDocument2
,
(
void
**
)
&
doc
)))
return
FALSE
;
if
((
ret
=
SUCCEEDED
(
IHTMLDocument2_get_body
(
doc
,
&
body
))))
IHTMLElement_Release
(
body
);
IHTMLDocument_Release
(
doc
);
return
ret
;
}
static
void
print_version
(
void
)
static
void
print_version
(
void
)
{
{
#ifdef __i386__
#ifdef __i386__
...
@@ -693,12 +678,6 @@ extract_test_proc (HMODULE hModule, LPCTSTR lpszType,
...
@@ -693,12 +678,6 @@ extract_test_proc (HMODULE hModule, LPCTSTR lpszType,
nr_native_dlls
++
;
nr_native_dlls
++
;
return
TRUE
;
return
TRUE
;
}
}
if
(
!
strcmp
(
dllname
,
"mshtml"
)
&&
running_under_wine
()
&&
!
gecko_check
())
{
FreeLibrary
(
dll
);
xprintf
(
" %s=load error Gecko is not installed
\n
"
,
dllname
);
return
TRUE
;
}
FreeLibrary
(
dll
);
FreeLibrary
(
dll
);
if
(
!
(
err
=
get_subtests
(
tempdir
,
&
wine_tests
[
nr_of_files
],
lpszName
)))
if
(
!
(
err
=
get_subtests
(
tempdir
,
&
wine_tests
[
nr_of_files
],
lpszName
)))
...
...
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