Update-Installer/external/win32cpp/tutorials/Tutorial6/ScribbleApp.cpp
Robert Knight d16da069e9 Add Win++ library to external
This is a thin wrapper around the Win32 API used in the Win32
Updater Dialog implementation.
2011-08-23 19:54:52 +01:00

16 lines
211 B
C++

///////////////////////////////
// ScribbleApp.cpp
#include "ScribbleApp.h"
CScribbleApp::CScribbleApp()
{
}
BOOL CScribbleApp::InitInstance()
{
//Create the Window
m_Frame.Create();
return TRUE;
}