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.
43 lines
700 B
43 lines
700 B
|
|
|
|
|
|
class CWinNTUserBusInfo;
|
|
|
|
|
|
class CWinNTUserBusInfo : INHERIT_TRACKING,
|
|
public IADsFSUserBusinessInfo
|
|
{
|
|
friend class CWinNTUser;
|
|
|
|
public:
|
|
|
|
/* IUnknown methods */
|
|
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj) ;
|
|
|
|
DECLARE_STD_REFCOUNTING
|
|
|
|
DECLARE_IDispatch_METHODS
|
|
|
|
DECLARE_IADsFSUserBusinessInfo_METHODS
|
|
|
|
CWinNTUserBusInfo::CWinNTUserBusInfo();
|
|
|
|
CWinNTUserBusInfo::~CWinNTUserBusInfo();
|
|
|
|
static
|
|
HRESULT
|
|
Create(
|
|
CCoreADsObject FAR * pCoreADsObject,
|
|
CWinNTUserBusInfo FAR * FAR * ppUserBI
|
|
);
|
|
|
|
protected:
|
|
|
|
CCoreADsObject * _pCoreADsObject;
|
|
CAggregatorDispMgr *_pDispMgr;
|
|
|
|
};
|
|
|
|
|
|
|
|
|