Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
cWinInternetSecurity.h
Go to the documentation of this file.
1 //
4 //
5 
6 #ifndef _INC_cWinInternetSecurity_H
7 #define _INC_cWinInternetSecurity_H
8 #ifndef NO_PRAGMA_ONCE
9 #pragma once
10 #endif
11 
12 #include "WinTypes.h"
14 
15 #if defined(_WIN32) && ! defined(UNDER_CE)
16 
17 struct IInternetSecurityManager;
18 
19 namespace GrayLib
20 {
21  class GRAYLIB_LINK cWinInternetSecurity
22  {
26  public:
27  cIUnkPtr<IInternetSecurityManager> m_pISM;
28 
29  public:
30  cWinInternetSecurity();
31  ~cWinInternetSecurity(void);
32  HRESULT OpenISM();
33  HRESULT AddToTrustedZone(const char* pszURL);
34  };
35 };
36 
37 #endif
38 #endif
#define GRAYLIB_LINK
Definition: GrayLibBase.h:35
INT32 HRESULT
_WIN32 style error codes. INT32
Definition: SysTypes.h:465
Definition: cMesh.h:22