forked from libgit2/libgit2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
735 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright (C) the libgit2 contributors. All rights reserved. | ||
* | ||
* This file is part of libgit2, distributed under the GNU GPL v2 with | ||
* a Linking Exception. For full terms see the included COPYING file. | ||
*/ | ||
|
||
#ifndef __CUSTOM_URLMON_H | ||
#define __CUSTOM_URLMON_H | ||
|
||
typedef struct IInternetSecurityManager IInternetSecurityManager; | ||
|
||
typedef struct IInternetSecurityManagerVtbl | ||
{ | ||
HRESULT(STDMETHODCALLTYPE *QueryInterface)(IInternetSecurityManager *, REFIID, void **); | ||
ULONG(STDMETHODCALLTYPE *AddRef)(IInternetSecurityManager *); | ||
ULONG(STDMETHODCALLTYPE *Release)(IInternetSecurityManager *); | ||
LPVOID SetSecuritySite; | ||
LPVOID GetSecuritySite; | ||
HRESULT(STDMETHODCALLTYPE *MapUrlToZone)(IInternetSecurityManager *, LPCWSTR, DWORD *, DWORD); | ||
LPVOID GetSecurityId; | ||
LPVOID ProcessUrlAction; | ||
LPVOID QueryCustomPolicy; | ||
LPVOID SetZoneMapping; | ||
LPVOID GetZoneMappings; | ||
} IInternetSecurityManagerVtbl; | ||
|
||
struct IInternetSecurityManager | ||
{ | ||
CONST_VTBL struct IInternetSecurityManagerVtbl *lpVtbl; | ||
}; | ||
|
||
#define URLZONE_LOCAL_MACHINE 0 | ||
#define URLZONE_INTRANET 1 | ||
#define URLZONE_TRUSTED 2 | ||
|
||
#endif /* __CUSTOM_URLMON_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
LIBRARY WINHTTP | ||
EXPORTS | ||
WinHttpAddRequestHeaders@16 | ||
WinHttpCheckPlatform@0 | ||
WinHttpCloseHandle@4 | ||
WinHttpConnect@16 | ||
WinHttpCrackUrl@16 | ||
WinHttpCreateUrl@16 | ||
WinHttpDetectAutoProxyConfigUrl@8 | ||
WinHttpGetDefaultProxyConfiguration@4 | ||
WinHttpGetIEProxyConfigForCurrentUser@4 | ||
WinHttpGetProxyForUrl@16 | ||
WinHttpOpen@20 | ||
WinHttpOpenRequest@28 | ||
WinHttpQueryAuthSchemes@16 | ||
WinHttpQueryDataAvailable@8 | ||
WinHttpQueryHeaders@24 | ||
WinHttpQueryOption@16 | ||
WinHttpReadData@16 | ||
WinHttpReceiveResponse@8 | ||
WinHttpSendRequest@28 | ||
WinHttpSetCredentials@24 | ||
WinHttpSetDefaultProxyConfiguration@4 | ||
WinHttpSetOption@16 | ||
WinHttpSetStatusCallback@16 | ||
WinHttpSetTimeouts@20 | ||
WinHttpTimeFromSystemTime@8 | ||
WinHttpTimeToSystemTime@8 | ||
WinHttpWriteData@16 |
Oops, something went wrong.