Source code of Windows XP (NT5)
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.

36 lines
950 B

  1. //*********************************************************************
  2. //* Microsoft Windows **
  3. //* Copyright(c) Microsoft Corp., 1996 **
  4. //*********************************************************************
  5. #ifndef _RORS_H_
  6. #define _RORS_H_
  7. /*Includes-----------------------------------------------------------*/
  8. /*Prototypes---------------------------------------------------------*/
  9. class CRORemoteSite : public IObtainRating
  10. {
  11. private:
  12. UINT m_cRef;
  13. public:
  14. CRORemoteSite() { m_cRef = 1; }
  15. STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID * ppvObj);
  16. STDMETHOD_(ULONG,AddRef) (THIS);
  17. STDMETHOD_(ULONG,Release) (THIS);
  18. STDMETHOD(ObtainRating) (THIS_ LPCTSTR pszTargetUrl, HANDLE hAbortEvent,
  19. IMalloc *pAllocator, LPSTR *ppRatingOut);
  20. STDMETHOD_(ULONG,GetSortOrder) (THIS);
  21. };
  22. #endif
  23. //_RORS_H_