mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-13 15:11:16 +00:00
30 lines
319 B
C
30 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
|
||
|
|