37 lines
844 B
C
37 lines
844 B
C
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 2000-2001.
|
||
|
//
|
||
|
// File: SaferStore.h
|
||
|
//
|
||
|
// Contents: Definition of CCertStoreSafer
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
#ifndef __SAFERSTORE_H
|
||
|
#define __SAFERSTORE_H
|
||
|
|
||
|
#include "StoreGPE.h"
|
||
|
#include "PolicyKey.h"
|
||
|
|
||
|
class CCertStoreSafer : public CCertStoreGPE
|
||
|
{
|
||
|
public:
|
||
|
CCertStoreSafer (
|
||
|
DWORD dwFlags,
|
||
|
LPCWSTR lpcszMachineName,
|
||
|
LPCWSTR objectName,
|
||
|
const CString & pcszLogStoreName,
|
||
|
const CString & pcszPhysStoreName,
|
||
|
IGPEInformation * pGPTInformation,
|
||
|
const GUID& compDataGUID,
|
||
|
IConsole* pConsole);
|
||
|
~CCertStoreSafer ();
|
||
|
|
||
|
virtual HKEY GetGroupPolicyKey ();
|
||
|
|
||
|
private:
|
||
|
CPolicyKey m_policyKey;
|
||
|
};
|
||
|
|
||
|
#endif
|