urlmon.h 1.2 KB
Newer Older
1 2 3 4 5 6 7
/*
 * 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.
 */

klutzy committed
8 9
#if defined(__MINGW_VERSION) || defined(__MINGW32_VERSION)

10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
#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 */
klutzy committed
40 41 42 43 44 45

#else

#include_next <urlmon.h>

#endif