WindowsXP-SP1/admin/snapin/certmgr/policykey.h
2020-09-30 16:53:49 +02:00

27 lines
616 B
C++

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 2000-2001.
//
// File: PolicyKey.h
//
// Contents: Definition of CPolicyKey
//
//----------------------------------------------------------------------------
#ifndef __POLICYKEY_H
#define __POLICYKEY_H
class CPolicyKey
{
public:
CPolicyKey (IGPEInformation* pGPEInformation, PCWSTR pszKey, bool fIsMachine);
~CPolicyKey ();
HKEY GetKey () const;
private:
HKEY m_hKeyGroupPolicy;
HKEY m_hSubKey;
};
#endif