WindowsXP-SP1/ds/adsi/router/cprop.hxx
2020-09-30 16:53:49 +02:00

56 lines
956 B
C++
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class CPropertyEntry;
class CPropertyEntry : INHERIT_TRACKING,
public ISupportErrorInfo,
public IADsPropertyEntry
{
public:
/* IUnknown methods */
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj) ;
DECLARE_STD_REFCOUNTING
DECLARE_IDispatch_METHODS
DECLARE_ISupportErrorInfo_METHODS
DECLARE_IADsPropertyEntry_METHODS
CPropertyEntry::CPropertyEntry();
CPropertyEntry::~CPropertyEntry();
static
HRESULT
CPropertyEntry::CreatePropertyEntry(
REFIID riid,
void **ppvObj
);
static
HRESULT
CPropertyEntry::AllocatePropertyEntryObject(
CPropertyEntry ** ppPropertyEntry
);
protected:
CDispatchMgr FAR * _pDispMgr;
LPWSTR _lpName;
DWORD _dwValueCount;
DWORD _dwADsType;
DWORD _dwControlCode;
VARIANT _propVar;
};