mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-02 20:31:22 +00:00
d16da069e9
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
26 lines
283 B
C++
26 lines
283 B
C++
/////////////////////////////
|
|
// 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
|
|
|
|
|