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
651fc5a2
Commit
651fc5a2
authored
Sep 30, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 30, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Skip tests on IEs older than 6 by checking for CompareSecurityIds.
parent
b4109a07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
misc.c
dlls/urlmon/tests/misc.c
+4
-2
No files found.
dlls/urlmon/tests/misc.c
View file @
651fc5a2
...
...
@@ -74,6 +74,7 @@ static HRESULT (WINAPI *pFindMimeFromData)(LPBC, LPCWSTR, LPVOID, DWORD, LPCWSTR
static
HRESULT
(
WINAPI
*
pObtainUserAgentString
)(
DWORD
,
LPSTR
,
DWORD
*
);
static
HRESULT
(
WINAPI
*
pReleaseBindInfo
)(
BINDINFO
*
);
static
HRESULT
(
WINAPI
*
pUrlMkGetSessionOption
)(
DWORD
,
LPVOID
,
DWORD
,
DWORD
*
,
DWORD
);
static
HRESULT
(
WINAPI
*
pCompareSecurityIds
)(
BYTE
*
,
DWORD
,
BYTE
*
,
DWORD
,
DWORD
);
static
void
test_CreateFormatEnum
(
void
)
...
...
@@ -1472,10 +1473,11 @@ START_TEST(misc)
pObtainUserAgentString
=
(
void
*
)
GetProcAddress
(
hurlmon
,
"ObtainUserAgentString"
);
pReleaseBindInfo
=
(
void
*
)
GetProcAddress
(
hurlmon
,
"ReleaseBindInfo"
);
pUrlMkGetSessionOption
=
(
void
*
)
GetProcAddress
(
hurlmon
,
"UrlMkGetSessionOption"
);
pCompareSecurityIds
=
(
void
*
)
GetProcAddress
(
hurlmon
,
"CompareSecurityIds"
);
if
(
!
pCoInternetCompareUrl
||
!
pCoInternetGetSecurityUrl
||
!
pCoInternetGetSession
||
!
pCoInternetParseUrl
)
{
win_skip
(
"Various needed functions not present
in IE 4.0
\n
"
);
!
pCoInternetGetSession
||
!
pCoInternetParseUrl
||
!
pCompareSecurityIds
)
{
win_skip
(
"Various needed functions not present
, too old IE
\n
"
);
return
;
}
...
...
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