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.
41 lines
770 B
41 lines
770 B
|
|
|
|
|
|
class CWinNTUserAcctStats;
|
|
|
|
|
|
class CWinNTUserAcctStats : INHERIT_TRACKING,
|
|
public IADsFSUserAccountStatistics
|
|
{
|
|
friend class CWinNTUser;
|
|
|
|
public:
|
|
|
|
/* IUnknown methods */
|
|
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj) ;
|
|
|
|
DECLARE_STD_REFCOUNTING
|
|
|
|
DECLARE_IDispatch_METHODS
|
|
|
|
DECLARE_IADsFSUserAccountStatistics_METHODS
|
|
|
|
CWinNTUserAcctStats::CWinNTUserAcctStats();
|
|
|
|
CWinNTUserAcctStats::~CWinNTUserAcctStats();
|
|
|
|
static
|
|
HRESULT
|
|
Create(
|
|
CCoreADsObject FAR * pCoreADsObject,
|
|
CWinNTUserAcctStats FAR * FAR * ppUserAS
|
|
);
|
|
|
|
|
|
protected:
|
|
|
|
CCoreADsObject * _pCoreADsObject;
|
|
CAggregatorDispMgr *_pDispMgr;
|
|
|
|
};
|
|
|