mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-01-24 00:11:01 +00:00
15 lines
154 B
C++
15 lines
154 B
C++
|
#include "FrameApp.h"
|
||
|
|
||
|
CWceFrameApp::CWceFrameApp()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
BOOL CWceFrameApp::InitInstance()
|
||
|
{
|
||
|
//Create the Window
|
||
|
m_Frame.Create();
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|