mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-13 07:01:32 +00:00
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
17 lines
254 B
C++
17 lines
254 B
C++
////////////////////////////////////
|
|
// ScribbleApp.h
|
|
|
|
#include "WinCore.h"
|
|
#include "View.h"
|
|
|
|
|
|
class CScribbleApp : public CWinApp
|
|
{
|
|
public:
|
|
CScribbleApp();
|
|
virtual ~CScribbleApp() {}
|
|
virtual BOOL InitInstance();
|
|
|
|
private:
|
|
CView m_View;
|
|
};
|