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.
94 lines
2.8 KiB
94 lines
2.8 KiB
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1999
|
|
//
|
|
// File: si.h
|
|
//
|
|
// This file contains the definition of the CSecurityInformation
|
|
// base class.
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#include <aclui.h>
|
|
|
|
#ifndef _SI_H_
|
|
#define _SI_H_
|
|
|
|
|
|
class CSecurityInformation : public ISecurityInformation
|
|
{
|
|
protected:
|
|
ULONG m_cRef;
|
|
LPTSTR m_pszObjectName;
|
|
GUID m_guid;
|
|
|
|
public:
|
|
CSecurityInformation();
|
|
virtual ~CSecurityInformation();
|
|
|
|
STDMETHOD(Initialize)(LPTSTR pszObject,
|
|
LPGUID Guid);
|
|
|
|
// IUnknown methods
|
|
STDMETHOD(QueryInterface)(REFIID, LPVOID *);
|
|
STDMETHOD_(ULONG, AddRef)();
|
|
STDMETHOD_(ULONG, Release)();
|
|
|
|
// ISecurityInformation methods
|
|
STDMETHOD(GetObjectInformation)(PSI_OBJECT_INFO pObjectInfo);
|
|
STDMETHOD(GetSecurity)(SECURITY_INFORMATION si,
|
|
PSECURITY_DESCRIPTOR *ppSD,
|
|
BOOL fDefault);
|
|
STDMETHOD(SetSecurity)(SECURITY_INFORMATION si,
|
|
PSECURITY_DESCRIPTOR pSD);
|
|
STDMETHOD(GetAccessRights)(const GUID* pguidObjectType,
|
|
DWORD dwFlags,
|
|
PSI_ACCESS *ppAccess,
|
|
ULONG *pcAccesses,
|
|
ULONG *piDefaultAccess);
|
|
STDMETHOD(MapGeneric)(const GUID *pguidObjectType,
|
|
UCHAR *pAceFlags,
|
|
ACCESS_MASK *pmask);
|
|
STDMETHOD(GetInheritTypes)(PSI_INHERIT_TYPE *ppInheritTypes,
|
|
ULONG *pcInheritTypes);
|
|
STDMETHOD(PropertySheetPageCallback)(HWND hwnd,
|
|
UINT uMsg,
|
|
SI_PAGE_TYPE uPage);
|
|
|
|
protected:
|
|
STDMETHOD(ReadObjectSecurity)(LPCTSTR pszObject,
|
|
SECURITY_INFORMATION si,
|
|
PSECURITY_DESCRIPTOR *ppSD);
|
|
STDMETHOD(WriteObjectSecurity)(LPCTSTR pszObject,
|
|
SECURITY_INFORMATION si,
|
|
PSECURITY_DESCRIPTOR pSD);
|
|
|
|
};
|
|
|
|
extern "C" void EditGuidSecurity(
|
|
LPTSTR GuidString,
|
|
LPGUID Guid
|
|
);
|
|
|
|
extern "C" ULONG SetWmiGuidSecurityInfo(
|
|
LPGUID Guid,
|
|
SECURITY_INFORMATION SecurityInformation,
|
|
PSID OwnerSid,
|
|
PSID GroupSid,
|
|
PACL Dacl,
|
|
PACL Sacl
|
|
);
|
|
|
|
extern "C" ULONG GetWmiGuidSecurityInfo(
|
|
LPGUID Guid,
|
|
SECURITY_INFORMATION SecurityInformation,
|
|
PSID *OwnerSid,
|
|
PSID *GroupSid,
|
|
PACL *Dacl,
|
|
PACL *Sacl,
|
|
PSECURITY_DESCRIPTOR *Sd
|
|
);
|
|
|
|
#endif /* _SI_H_ */
|