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.

38 lines
842 B

  1. /****************************************************************************\
  2. *
  3. * hint.h
  4. *
  5. * Created: William Taylor (wtaylor) 01/22/01
  6. *
  7. * MS Ratings Hint Handling Class
  8. *
  9. \****************************************************************************/
  10. #ifndef HINT_CLASS_H
  11. #define HINT_CLASS_H
  12. #include <atlmisc.h> // CString
  13. class CHint
  14. {
  15. private:
  16. HWND m_hWnd;
  17. int m_iId;
  18. public:
  19. CHint();
  20. CHint( HWND p_hWnd, int p_iId );
  21. void DisplayHint( void );
  22. void InitHint( void );
  23. bool VerifyHint( void );
  24. void SaveHint( void );
  25. void RemoveHint( void );
  26. protected:
  27. void GetHint( CString & p_rstrHint );
  28. void RetrieveHint( CString & p_rstrHint );
  29. void StoreHint( CString & p_rstrHint );
  30. };
  31. #endif