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

/****************************************************************************\
*
* hint.h
*
* Created: William Taylor (wtaylor) 01/22/01
*
* MS Ratings Hint Handling Class
*
\****************************************************************************/
#ifndef HINT_CLASS_H
#define HINT_CLASS_H
#include <atlmisc.h> // CString
class CHint
{
private:
HWND m_hWnd;
int m_iId;
public:
CHint();
CHint( HWND p_hWnd, int p_iId );
void DisplayHint( void );
void InitHint( void );
bool VerifyHint( void );
void SaveHint( void );
void RemoveHint( void );
protected:
void GetHint( CString & p_rstrHint );
void RetrieveHint( CString & p_rstrHint );
void StoreHint( CString & p_rstrHint );
};
#endif