mirror of
https://github.com/isledecomp/LEGOIslandRebuilder.git
synced 2025-02-19 19:07:02 -05:00
22 lines
340 B
C++
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
|