wininet: Add stubs for PrivacyGet/SetZonePreferenceW.
This commit is contained in:
parent
dc31d87082
commit
e12ade9fb3
|
@ -3815,6 +3815,25 @@ DWORD WINAPI InternetConfirmZoneCrossingW( HWND hWnd, LPWSTR szUrlPrev, LPWSTR s
|
|||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* PrivacySetZonePreferenceW (WININET.@)
|
||||
*/
|
||||
DWORD WINAPI PrivacySetZonePreferenceW( DWORD zone, DWORD type, DWORD template, LPCWSTR preference )
|
||||
{
|
||||
FIXME( "%x %x %x %s: stub\n", zone, type, template, debugstr_w(preference) );
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* PrivacyGetZonePreferenceW (WININET.@)
|
||||
*/
|
||||
DWORD WINAPI PrivacyGetZonePreferenceW( DWORD zone, DWORD type, LPDWORD template,
|
||||
LPWSTR preference, LPDWORD length )
|
||||
{
|
||||
FIXME( "%x %x: stub\n", zone, type );
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD WINAPI InternetDialA( HWND hwndParent, LPSTR lpszConnectoid, DWORD dwFlags,
|
||||
DWORD_PTR* lpdwConnection, DWORD dwReserved )
|
||||
{
|
||||
|
|
|
@ -213,8 +213,8 @@
|
|||
@ stdcall IsUrlCacheEntryExpiredW(wstr long ptr)
|
||||
@ stub LoadUrlCacheContent
|
||||
@ stub ParseX509EncodedCertificateForListBoxEntry
|
||||
@ stub PrivacyGetZonePreferenceW # (long long ptr ptr ptr)
|
||||
@ stub PrivacySetZonePreferenceW # (long long long wstr)
|
||||
@ stdcall PrivacyGetZonePreferenceW(long long ptr ptr ptr)
|
||||
@ stdcall PrivacySetZonePreferenceW(long long long wstr)
|
||||
@ stdcall ReadUrlCacheEntryStream(ptr long ptr ptr long)
|
||||
@ stdcall RegisterUrlCacheNotification(ptr long long long long long)
|
||||
@ stdcall ResumeSuspendedDownload(long long)
|
||||
|
|
|
@ -1356,6 +1356,23 @@ INTERNETAPI DWORD WINAPI InternetConfirmZoneCrossingA(HWND ,LPSTR ,LPSTR ,BOOL);
|
|||
INTERNETAPI DWORD WINAPI InternetConfirmZoneCrossingW(HWND ,LPWSTR ,LPWSTR ,BOOL);
|
||||
#define InternetConfirmZoneCrossing WINELIB_NAME_AW(InternetConfirmZoneCrossing)
|
||||
|
||||
#define PRIVACY_TEMPLATE_NO_COOKIES 0
|
||||
#define PRIVACY_TEMPLATE_HIGH 1
|
||||
#define PRIVACY_TEMPLATE_MEDIUM_HIGH 2
|
||||
#define PRIVACY_TEMPLATE_MEDIUM 3
|
||||
#define PRIVACY_TEMPLATE_MEDIUM_LOW 4
|
||||
#define PRIVACY_TEMPLATE_LOW 5
|
||||
#define PRIVACY_TEMPLATE_CUSTOM 100
|
||||
#define PRIVACY_TEMPLATE_ADVANCED 101
|
||||
|
||||
#define PRIVACY_TEMPLATE_MAX PRIVACY_TEMPLATE_LOW
|
||||
|
||||
#define PRIVACY_TYPE_FIRST_PARTY 0
|
||||
#define PRIVACY_TYPE_THIRD_PARTY 1
|
||||
|
||||
INTERNETAPI DWORD WINAPI PrivacySetZonePreferenceW(DWORD,DWORD,DWORD,LPCWSTR);
|
||||
INTERNETAPI DWORD WINAPI PrivacyGetZonePreferenceW(DWORD,DWORD,LPDWORD,LPWSTR,LPDWORD);
|
||||
|
||||
#define INTERNET_ERROR_BASE 12000
|
||||
|
||||
#define ERROR_INTERNET_OUT_OF_HANDLES (INTERNET_ERROR_BASE + 1)
|
||||
|
|
Loading…
Reference in New Issue