Files
2026-08-07 17:38:18 +09:00

21 lines
266 B
C++

#pragma once
// CHCButton
class CHCButton : public CBitmapButton
{
DECLARE_DYNAMIC(CHCButton)
public:
CHCButton();
virtual ~CHCButton();
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
};