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
1c7d349f
Commit
1c7d349f
authored
Nov 25, 2010
by
Austin English
Committed by
Alexandre Julliard
Nov 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Add a stub for InternetShowSecurityInfoByURL.
parent
f48b0aa6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
http.c
dlls/wininet/http.c
+18
-0
wininet.spec
dlls/wininet/wininet.spec
+3
-3
No files found.
dlls/wininet/http.c
View file @
1c7d349f
...
...
@@ -5167,3 +5167,21 @@ BOOL WINAPI IsHostInProxyBypassList(DWORD flags, LPCSTR szHost, DWORD length)
FIXME
(
"STUB: flags=%d host=%s length=%d
\n
"
,
flags
,
szHost
,
length
);
return
FALSE
;
}
/***********************************************************************
* InternetShowSecurityInfoByURLA (@)
*/
BOOL
WINAPI
InternetShowSecurityInfoByURLA
(
LPCSTR
url
,
HWND
window
)
{
FIXME
(
"stub: %s %p
\n
"
,
url
,
window
);
return
FALSE
;
}
/***********************************************************************
* InternetShowSecurityInfoByURLW (@)
*/
BOOL
WINAPI
InternetShowSecurityInfoByURLW
(
LPCWSTR
url
,
HWND
window
)
{
FIXME
(
"stub: %s %p
\n
"
,
debugstr_w
(
url
),
window
);
return
FALSE
;
}
dlls/wininet/wininet.spec
View file @
1c7d349f
...
...
@@ -195,9 +195,9 @@
@ stdcall InternetSetStatusCallback(ptr ptr) InternetSetStatusCallbackA
@ stdcall InternetSetStatusCallbackA(ptr ptr)
@ stdcall InternetSetStatusCallbackW(ptr ptr)
@ st
ub InternetShowSecurityInfoByURL
@ st
ub InternetShowSecurityInfoByURLA
@ st
ub InternetShowSecurityInfoByURLW
@ st
dcall InternetShowSecurityInfoByURL(str ptr) InternetShowSecurityInfoByURLA
@ st
dcall InternetShowSecurityInfoByURLA(str ptr)
@ st
dcall InternetShowSecurityInfoByURLW(wstr ptr)
@ stdcall InternetTimeFromSystemTime(ptr long ptr long) InternetTimeFromSystemTimeA
@ stdcall InternetTimeFromSystemTimeA(ptr long ptr long)
@ stdcall InternetTimeFromSystemTimeW(ptr long ptr long)
...
...
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