mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-02 20:31:22 +00:00
d16da069e9
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
23 lines
360 B
C++
23 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
|