mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-08 23:01:51 +00:00
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
21 lines
402 B
C++
21 lines
402 B
C++
#ifndef MAINFRM_H
|
|
#define MAINFRM_H
|
|
|
|
|
|
#include "wincore.h"
|
|
#include "wceframe.h"
|
|
#include "dialog.h"
|
|
|
|
|
|
class CMainFrame : public CWceFrame
|
|
{
|
|
public:
|
|
CMainFrame();
|
|
virtual ~CMainFrame();
|
|
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
|
|
virtual void OnDraw(CDC* pDC);
|
|
virtual void OnInitialUpdate();
|
|
virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
};
|
|
|
|
#endif // MAINFRM_H
|