2025-04-27 07:49:33 -04:00

22 lines
495 B
C++

/*************************************************
* tip.h *
* *
* Copyright (C) 1995-1999 Microsoft Inc. *
* *
*************************************************/
#ifndef _TIP_H_
#define _TIP_H_
class CTip : public CStatic
{
public:
CTip();
void SetString(const char * szStr);
BOOL Create(CWnd* pWnd);
protected:
};
#endif