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
4c7e9aa9
Commit
4c7e9aa9
authored
Jun 06, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 06, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Added InternetGetSecurityInfoByURL* stubs.
parent
6f8149e5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
0 deletions
+25
-0
internet.c
dlls/wininet/internet.c
+19
-0
wininet.spec
dlls/wininet/wininet.spec
+3
-0
winineti.h
include/winineti.h
+3
-0
No files found.
dlls/wininet/internet.c
View file @
4c7e9aa9
...
...
@@ -2702,6 +2702,7 @@ BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
SetLastError
(
ERROR_INTERNET_BAD_OPTION_LENGTH
);
ret
=
FALSE
;
}
else
TRACE
(
"INTERNET_OPTION_ERROR_MASK: %x
\n
"
,
*
(
ULONG
*
)
lpBuffer
);
lpwhh
->
ErrorMask
=
*
(
ULONG
*
)
lpBuffer
;
}
break
;
...
...
@@ -4413,6 +4414,24 @@ DWORD WINAPI PrivacyGetZonePreferenceW( DWORD zone, DWORD type, LPDWORD template
return
0
;
}
/***********************************************************************
* InternetGetSecurityInfoByURLA (WININET.@)
*/
BOOL
WINAPI
InternetGetSecurityInfoByURLA
(
LPSTR
lpszURL
,
PCCERT_CHAIN_CONTEXT
*
ppCertChain
,
DWORD
*
pdwSecureFlags
)
{
FIXME
(
"(%s %p %p)
\n
"
,
debugstr_a
(
lpszURL
),
ppCertChain
,
pdwSecureFlags
);
return
FALSE
;
}
/***********************************************************************
* InternetGetSecurityInfoByURLW (WININET.@)
*/
BOOL
WINAPI
InternetGetSecurityInfoByURLW
(
LPCWSTR
lpszURL
,
PCCERT_CHAIN_CONTEXT
*
ppCertChain
,
DWORD
*
pdwSecureFlags
)
{
FIXME
(
"(%s %p %p)
\n
"
,
debugstr_w
(
lpszURL
),
ppCertChain
,
pdwSecureFlags
);
return
FALSE
;
}
DWORD
WINAPI
InternetDialA
(
HWND
hwndParent
,
LPSTR
lpszConnectoid
,
DWORD
dwFlags
,
DWORD_PTR
*
lpdwConnection
,
DWORD
dwReserved
)
{
...
...
dlls/wininet/wininet.spec
View file @
4c7e9aa9
...
...
@@ -157,6 +157,9 @@
@ stdcall InternetGetLastResponseInfoW(ptr ptr ptr)
@ stdcall InternetGetPerSiteCookieDecisionA(str ptr)
@ stdcall InternetGetPerSiteCookieDecisionW(wstr ptr)
@ stdcall InternetGetSecurityInfoByURL(str ptr ptr) InternetGetSecurityInfoByURLA
@ stdcall InternetGetSecurityInfoByURLA(str ptr ptr)
@ stdcall InternetGetSecurityInfoByURLW(wstr ptr ptr)
@ stdcall InternetGoOnline(str long long) InternetGoOnlineA
@ stdcall InternetGoOnlineA(str long long)
@ stdcall InternetGoOnlineW(wstr long long)
...
...
include/winineti.h
View file @
4c7e9aa9
...
...
@@ -123,6 +123,9 @@ BOOL WINAPI IsUrlCacheEntryExpiredW(LPCWSTR,DWORD,FILETIME*);
BOOL
WINAPI
SetUrlCacheConfigInfoA
(
LPINTERNET_CACHE_CONFIG_INFOA
,
DWORD
);
BOOL
WINAPI
SetUrlCacheConfigInfoW
(
LPINTERNET_CACHE_CONFIG_INFOW
,
DWORD
);
#define SetUrlCacheConfigInfo WINELIB_NAME_AW(SetUrlCacheConfigInfo)
BOOL
WINAPI
InternetGetSecurityInfoByURLA
(
LPSTR
,
PCCERT_CHAIN_CONTEXT
*
,
DWORD
*
);
BOOL
WINAPI
InternetGetSecurityInfoByURLW
(
LPCWSTR
,
PCCERT_CHAIN_CONTEXT
*
,
DWORD
*
);
#define InternetGetSecurityInfoByURL WINELIB_NAME_AW(InternetGetSecurityInfoByURL)
#ifdef __cplusplus
}
...
...
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