LEGOIslandRebuilder/src/clinkstatic.h
2021-09-18 14:28:15 -07:00

22 lines
340 B
C++

#ifndef CLINKSTATIC_H
#define CLINKSTATIC_H
#include <AFXWIN.H>
class CLinkStatic : public CStatic
{
public:
CLinkStatic();
afx_msg BOOL OnSetCursor(CWnd *pWnd, UINT nHitTest, UINT message);
afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
private:
HCURSOR m_hPointHand;
DECLARE_MESSAGE_MAP()
};
#endif // CLINKSTATIC_H