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