Leaked source code of windows server 2003
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.

17 lines
361 B

  1. #pragma once
  2. class CProtectedStoreDetails
  3. {
  4. private:
  5. CStringBuffer m_FileSystemPath;
  6. DWORD m_dwFlags;
  7. CMiniInlineHeap<> m_SecDescBacking;
  8. void Reset();
  9. public:
  10. CProtectedStoreDetails() : m_dwFlags(0) { }
  11. ~CProtectedStoreDetails();
  12. static BOOL ResolveStore(LPCGUID pGuid, CProtectedStoreDetails* pTarget);
  13. };