Update-Installer/external/win32cpp/WCE samples/Subclass/SubclassApp.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

24 lines
368 B
C++

///////////////////////////////////////////////
//SubclassApp.cpp - Definitions for the CSubclassApp class
#include "SubclassApp.h"
CSubclassApp::CSubclassApp()
{
}
BOOL CSubclassApp::InitInstance()
{
TRACE(TEXT("Move the mouse over the button to see messages"));
//Create the Outer Window
m_Win.Create();
return TRUE;
}
CSubclassApp::~CSubclassApp()
{
}