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
e9ece6bd
Commit
e9ece6bd
authored
Mar 10, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Don't crash on IE5.01SP4.
parent
ab75abbe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
internet.c
dlls/wininet/tests/internet.c
+6
-1
No files found.
dlls/wininet/tests/internet.c
View file @
e9ece6bd
...
...
@@ -29,6 +29,8 @@
static
BOOL
(
WINAPI
*
pCreateUrlCacheContainerA
)(
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
);
static
BOOL
(
WINAPI
*
pCreateUrlCacheContainerW
)(
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
);
static
BOOL
(
WINAPI
*
pInternetTimeFromSystemTimeA
)(
CONST
SYSTEMTIME
*
,
DWORD
,
LPSTR
,
DWORD
);
static
BOOL
(
WINAPI
*
pInternetTimeFromSystemTimeW
)(
CONST
SYSTEMTIME
*
,
DWORD
,
LPWSTR
,
DWORD
);
static
BOOL
(
WINAPI
*
pInternetTimeToSystemTimeA
)(
LPCSTR
,
SYSTEMTIME
*
,
DWORD
);
...
...
@@ -784,6 +786,7 @@ START_TEST(internet)
HMODULE
hdll
;
hdll
=
GetModuleHandleA
(
"wininet.dll"
);
pCreateUrlCacheContainerA
=
(
void
*
)
GetProcAddress
(
hdll
,
"CreateUrlCacheContainerA"
);
pCreateUrlCacheContainerW
=
(
void
*
)
GetProcAddress
(
hdll
,
"CreateUrlCacheContainerW"
);
pInternetTimeFromSystemTimeA
=
(
void
*
)
GetProcAddress
(
hdll
,
"InternetTimeFromSystemTimeA"
);
pInternetTimeFromSystemTimeW
=
(
void
*
)
GetProcAddress
(
hdll
,
"InternetTimeFromSystemTimeW"
);
pInternetTimeToSystemTimeA
=
(
void
*
)
GetProcAddress
(
hdll
,
"InternetTimeToSystemTimeA"
);
...
...
@@ -806,7 +809,9 @@ START_TEST(internet)
InternetTimeToSystemTimeA_test
();
InternetTimeToSystemTimeW_test
();
}
if
(
pIsDomainLegalCookieDomainW
&&
(
void
*
)
pIsDomainLegalCookieDomainW
==
(
void
*
)
pCreateUrlCacheContainerA
)
if
(
pIsDomainLegalCookieDomainW
&&
((
void
*
)
pIsDomainLegalCookieDomainW
==
(
void
*
)
pCreateUrlCacheContainerA
||
(
void
*
)
pIsDomainLegalCookieDomainW
==
(
void
*
)
pCreateUrlCacheContainerW
))
win_skip
(
"IsDomainLegalCookieDomainW is not available on systems with IE5
\n
"
);
else
if
(
!
pIsDomainLegalCookieDomainW
)
win_skip
(
"IsDomainLegalCookieDomainW (or ordinal 117) is not available
\n
"
);
...
...
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