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.
49 lines
811 B
49 lines
811 B
|
|
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;
|
|
|
|
};
|
|
|
|
|