mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2024-11-29 15:11:48 +00:00
d16da069e9
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
30 lines
487 B
C++
30 lines
487 B
C++
///////////////////////////////////////////////////////
|
|
// Mainfrm.h
|
|
// Declaration of the CMainFrame class
|
|
|
|
|
|
#ifndef MAINFRM_H
|
|
#define MAINFRM_H
|
|
|
|
#include "frame.h"
|
|
#include "View.h"
|
|
|
|
|
|
class CMainFrame : public CFrame
|
|
{
|
|
public:
|
|
CMainFrame(void);
|
|
virtual ~CMainFrame();
|
|
|
|
protected:
|
|
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
|
|
virtual void SetupToolBar();
|
|
virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
private:
|
|
CView m_View;
|
|
|
|
};
|
|
|
|
#endif //MAINFRM_H
|
|
|