Skip to content

Commit

Permalink
D:\Notepad\Notepad.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
wildwoong@gmail.com committed Jan 21, 2011
1 parent 1e02431 commit bd2b8eb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Notepad.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Notepad.cpp

#include "Notepad.h"
#include "MainFrm.h"
#include "Label.h"

CNotepadApp notepadApp;

BOOL CNotepadApp::InitInstance()
{
CMainFrame* mainFrame = new CMainFrame;
mainFrame->Create(NULL, _T("¸Þ¸ðÀå"));
mainFrame->ShowWindow(SW_SHOW);
mainFrame->UpdateWindow();
this->m_pMainWnd = mainFrame;

return TRUE;
}

0 comments on commit bd2b8eb

Please sign in to comment.