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

50 lines
860 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 CLargeInteger;
class CLargeInteger : INHERIT_TRACKING,
public ISupportErrorInfo,
public IADsLargeInteger
{
public:
/* IUnknown methods */
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj) ;
DECLARE_STD_REFCOUNTING
DECLARE_IDispatch_METHODS
DECLARE_ISupportErrorInfo_METHODS
DECLARE_IADsLargeInteger_METHODS
CLargeInteger::CLargeInteger();
CLargeInteger::~CLargeInteger();
static
HRESULT
CLargeInteger::CreateLargeInteger(
REFIID riid,
void **ppvObj
);
static
HRESULT
CLargeInteger::AllocateLargeIntegerObject(
CLargeInteger ** ppLargeInteger
);
protected:
CDispatchMgr FAR * _pDispMgr;
DWORD _dwHighPart;
DWORD _dwLowPart;
};