Leaked source code of windows server 2003
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
860 B

  1. class CLargeInteger;
  2. class CLargeInteger : INHERIT_TRACKING,
  3. public ISupportErrorInfo,
  4. public IADsLargeInteger
  5. {
  6. public:
  7. /* IUnknown methods */
  8. STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj) ;
  9. DECLARE_STD_REFCOUNTING
  10. DECLARE_IDispatch_METHODS
  11. DECLARE_ISupportErrorInfo_METHODS
  12. DECLARE_IADsLargeInteger_METHODS
  13. CLargeInteger::CLargeInteger();
  14. CLargeInteger::~CLargeInteger();
  15. static
  16. HRESULT
  17. CLargeInteger::CreateLargeInteger(
  18. REFIID riid,
  19. void **ppvObj
  20. );
  21. static
  22. HRESULT
  23. CLargeInteger::AllocateLargeIntegerObject(
  24. CLargeInteger ** ppLargeInteger
  25. );
  26. protected:
  27. CDispatchMgr FAR * _pDispMgr;
  28. DWORD _dwHighPart;
  29. DWORD _dwLowPart;
  30. };
  31.