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.
24 lines
360 B
C++
24 lines
360 B
C++
////////////////////////////////////////
|
|
// ScribbleApp.h
|
|
|
|
#ifndef SCRIBBLEAPP_H
|
|
#define SCRIBBLEAPP_H
|
|
|
|
#include "targetver.h"
|
|
#include "Wincore.h"
|
|
#include "Mainfrm.h"
|
|
|
|
|
|
class CScribbleApp : public CWinApp
|
|
{
|
|
public:
|
|
CScribbleApp();
|
|
virtual ~CScribbleApp() {}
|
|
virtual BOOL InitInstance();
|
|
|
|
private:
|
|
CMainFrame m_Frame;
|
|
};
|
|
|
|
#endif //SCRIBBLEAPP_H
|
|
|