mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-13 07:01:32 +00:00
d16da069e9
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
24 lines
368 B
C++
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()
|
|
{
|
|
}
|