windows-nt/Source/XPSP1/NT/admin/snapin/certmgr/saferstore.h

37 lines
844 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
//+---------------------------------------------------------------------------
//
// 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