windows-nt/Source/XPSP1/NT/admin/snapin/certmgr/saferstore.h
2020-09-26 16:20:57 +08:00

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