mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-02 12:21:23 +00:00
d16da069e9
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
16 lines
244 B
C++
16 lines
244 B
C++
#ifndef VIEW_H
|
|
#define VIEW_H
|
|
|
|
#include "wincore.h"
|
|
|
|
|
|
class CView : public CWnd
|
|
{
|
|
public:
|
|
CView() {}
|
|
virtual ~CView() {}
|
|
virtual void OnDraw(CDC* pDC);
|
|
virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
};
|
|
|
|
#endif //VIEW_H
|