mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-15 08:00:52 +00:00
17 lines
244 B
C
17 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
|