// movieApp.cpp: implementation of the movieApp class. // ////////////////////////////////////////////////////////////////////// #include "movie.h" #include "movieApp.h" #include "movieWnd.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// movieApp myapp; BOOL movieApp::InitInstance() { m_pMainWnd=new movieWnd; m_pMainWnd->ShowWindow(m_nCmdShow); m_pMainWnd->UpdateWindow(); return TRUE; } movieApp::movieApp() { } movieApp::~movieApp() { }