Source code of Windows XP (NT5)
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.

36 lines
844 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2000-2001.
  5. //
  6. // File: SaferStore.h
  7. //
  8. // Contents: Definition of CCertStoreSafer
  9. //
  10. //----------------------------------------------------------------------------
  11. #ifndef __SAFERSTORE_H
  12. #define __SAFERSTORE_H
  13. #include "StoreGPE.h"
  14. #include "PolicyKey.h"
  15. class CCertStoreSafer : public CCertStoreGPE
  16. {
  17. public:
  18. CCertStoreSafer (
  19. DWORD dwFlags,
  20. LPCWSTR lpcszMachineName,
  21. LPCWSTR objectName,
  22. const CString & pcszLogStoreName,
  23. const CString & pcszPhysStoreName,
  24. IGPEInformation * pGPTInformation,
  25. const GUID& compDataGUID,
  26. IConsole* pConsole);
  27. ~CCertStoreSafer ();
  28. virtual HKEY GetGroupPolicyKey ();
  29. private:
  30. CPolicyKey m_policyKey;
  31. };
  32. #endif