Update-Installer/external/win32cpp/WCE samples/DlgSubclass/Button.h

27 lines
283 B
C
Raw Normal View History

/////////////////////////////
// Button.h
#ifndef BUTTON_H
#define BUTTON_H
#include "wincore.h"
class CButton : public CWnd
{
public:
CButton() {}
virtual ~CButton() {}
protected:
virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
};
#endif //BUTTON_H