mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-13 07:01:32 +00:00
28 lines
324 B
C
28 lines
324 B
C
|
/////////////////////////////
|
||
|
// Button.h
|
||
|
|
||
|
|
||
|
#ifndef BUTTON_H
|
||
|
#define BUTTON_H
|
||
|
|
||
|
#include "wincore.h"
|
||
|
|
||
|
|
||
|
class CButton : public CWnd
|
||
|
{
|
||
|
public:
|
||
|
CButton() {}
|
||
|
virtual ~CButton();
|
||
|
virtual void PreCreate(CREATESTRUCT &cs);
|
||
|
|
||
|
protected:
|
||
|
virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif //BUTTON_H
|
||
|
|
||
|
|