You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
880 B
37 lines
880 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// 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
|