mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-13 07:01:32 +00:00
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
29 lines
319 B
C++
29 lines
319 B
C++
///////////////////////////////
|
|
// MainWin.h
|
|
|
|
|
|
#ifndef MAINWIN_H
|
|
#define MAINWIN_H
|
|
|
|
|
|
#include "Button.h"
|
|
|
|
|
|
class CMainWin : public CWnd
|
|
{
|
|
public:
|
|
CMainWin();
|
|
~CMainWin() {}
|
|
|
|
protected:
|
|
LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
void OnCreate();
|
|
|
|
private:
|
|
CButton m_Button;
|
|
};
|
|
|
|
|
|
|
|
#endif //MAINWIN_H
|
|
|