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.
 
 
 
 
 
 

46 lines
683 B

class CAcl;
class CAcl : INHERIT_TRACKING,
public IADsAcl
{
public:
/* IUnknown methods */
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj) ;
DECLARE_STD_REFCOUNTING
DECLARE_IDispatch_METHODS
DECLARE_IADsAcl_METHODS
CAcl::CAcl();
CAcl::~CAcl();
static
HRESULT
CAcl::CreateSecurityDescriptor(
REFIID riid,
void **ppvObj
);
static
HRESULT
CAcl::AllocateSecurityDescriptorObject(
CAcl ** ppSecurityDescriptor
);
protected:
CDispatchMgr FAR * _pDispMgr;
LPWSTR _lpProtectedAttrName;
LPWSTR _lpSubjectName;
DWORD _dwPrivileges;
};