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
17 lines
361 B
#pragma once
|
|
|
|
|
|
|
|
class CProtectedStoreDetails
|
|
{
|
|
private:
|
|
CStringBuffer m_FileSystemPath;
|
|
DWORD m_dwFlags;
|
|
CMiniInlineHeap<> m_SecDescBacking;
|
|
|
|
void Reset();
|
|
public:
|
|
CProtectedStoreDetails() : m_dwFlags(0) { }
|
|
~CProtectedStoreDetails();
|
|
static BOOL ResolveStore(LPCGUID pGuid, CProtectedStoreDetails* pTarget);
|
|
};
|