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
9adbd8ab
Commit
9adbd8ab
authored
Nov 19, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 20, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Get rid of gecko_installer_workaround in tests.
parent
655e0a0c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
34 deletions
+0
-34
url.c
dlls/urlmon/tests/url.c
+0
-34
No files found.
dlls/urlmon/tests/url.c
View file @
9adbd8ab
...
...
@@ -2821,40 +2821,8 @@ static void test_StdURLMoniker(void)
IMoniker_Release
(
mon
);
}
static
void
gecko_installer_workaround
(
BOOL
disable
)
{
HKEY
hkey
;
DWORD
res
;
static
BOOL
has_url
=
FALSE
;
static
char
url
[
2048
];
if
(
!
disable
&&
!
has_url
)
return
;
res
=
RegOpenKey
(
HKEY_CURRENT_USER
,
"Software
\\
Wine
\\
MSHTML"
,
&
hkey
);
if
(
res
!=
ERROR_SUCCESS
)
return
;
if
(
disable
)
{
DWORD
type
,
size
=
sizeof
(
url
);
res
=
RegQueryValueEx
(
hkey
,
"GeckoUrl"
,
NULL
,
&
type
,
(
PVOID
)
url
,
&
size
);
if
(
res
==
ERROR_SUCCESS
&&
type
==
REG_SZ
)
has_url
=
TRUE
;
RegDeleteValue
(
hkey
,
"GeckoUrl"
);
}
else
{
RegSetValueEx
(
hkey
,
"GeckoUrl"
,
0
,
REG_SZ
,
(
PVOID
)
url
,
lstrlenA
(
url
)
+
1
);
}
RegCloseKey
(
hkey
);
}
START_TEST
(
url
)
{
gecko_installer_workaround
(
TRUE
);
complete_event
=
CreateEvent
(
NULL
,
FALSE
,
FALSE
,
NULL
);
complete_event2
=
CreateEvent
(
NULL
,
FALSE
,
FALSE
,
NULL
);
thread_id
=
GetCurrentThreadId
();
...
...
@@ -2994,6 +2962,4 @@ START_TEST(url)
CloseHandle
(
complete_event
);
CloseHandle
(
complete_event2
);
CoUninitialize
();
gecko_installer_workaround
(
FALSE
);
}
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