mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-13 15:11:16 +00:00
25 lines
368 B
C++
25 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()
|
||
|
{
|
||
|
}
|