mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-01-23 16:00:40 +00:00
d16da069e9
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
16 lines
214 B
C++
16 lines
214 B
C++
//////////////////////////////////
|
|
// ScribbleApp.cpp
|
|
|
|
#include "ScribbleApp.h"
|
|
|
|
CScribbleApp::CScribbleApp()
|
|
{
|
|
}
|
|
|
|
BOOL CScribbleApp::InitInstance()
|
|
{
|
|
//Create the Window
|
|
m_Frame.Create();
|
|
|
|
return TRUE;
|
|
}
|