mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2024-11-25 21:31:07 +00:00
d16da069e9
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
25 lines
355 B
C++
25 lines
355 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
|
|
|