Update-Installer/external/win32cpp/WCE samples/Subclass/MainWin.h
Robert Knight d16da069e9 Add Win++ library to external
This is a thin wrapper around the Win32 API used in the Win32
Updater Dialog implementation.
2011-08-23 19:54:52 +01:00

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