mirror of https://github.com/tongzx/nt5src
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.
55 lines
901 B
55 lines
901 B
|
|
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;
|
|
};
|
|
|
|
|