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.
54 lines
1.5 KiB
54 lines
1.5 KiB
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997-2001.
|
|
//
|
|
// File: StoreRSOP.h
|
|
//
|
|
// Contents: CertStoreRSOP class definition
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __STORERSOP_H_INCLUDED__
|
|
#define __STORERSOP_H_INCLUDED__
|
|
|
|
#pragma warning(push, 3)
|
|
#include <wbemcli.h>
|
|
#pragma warning(pop)
|
|
#include "cookie.h"
|
|
#include "RSOPObject.h"
|
|
|
|
class CCertStoreRSOP : public CCertStore
|
|
{
|
|
public:
|
|
virtual PCCERT_CONTEXT EnumCertificates (PCCERT_CONTEXT pPrevCertContext);
|
|
virtual HRESULT Commit () { return S_OK; }
|
|
virtual bool IsReadOnly () { return true; }
|
|
void AllowEmptyEFSPolicy();
|
|
virtual bool IsNullEFSPolicy();
|
|
virtual bool IsMachineStore();
|
|
virtual bool CanContain (CertificateManagerObjectType nodeType);
|
|
virtual HCERTSTORE GetStoreHandle (BOOL bSilent = FALSE, HRESULT* phr = 0);
|
|
CCertStoreRSOP (
|
|
DWORD dwFlags,
|
|
LPCWSTR lpcszMachineName,
|
|
LPCWSTR objectName,
|
|
const CString & pcszLogStoreName,
|
|
const CString & pcszPhysStoreName,
|
|
CRSOPObjectArray& rsopObjectArray,
|
|
const GUID& compDataGUID,
|
|
IConsole* pConsole);
|
|
|
|
virtual ~CCertStoreRSOP ();
|
|
|
|
protected:
|
|
HRESULT GetBlobs ();
|
|
virtual void FinalCommit();
|
|
|
|
private:
|
|
bool m_fIsNullEFSPolicy;
|
|
CRSOPObjectArray m_rsopObjectArray;
|
|
};
|
|
|
|
|
|
#endif // ~__STORERSOP_H_INCLUDED__
|