Browse Subversion Repository
Contents of /Plugin/PluginApp.cpp
Parent Directory
| Revision Log
Revision 11 -
( show annotations)
( download)
( as text)
Wed Feb 10 18:21:00 2010 UTC
(14 years, 2 months ago)
by sho1get
File MIME type: text/x-c++src
File size: 451 byte(s)
| 1 |
#include "stdafx.h" |
| 2 |
#include "PluginApp.h" |
| 3 |
|
| 4 |
#ifdef _DEBUG |
| 5 |
#define new DEBUG_NEW |
| 6 |
#endif |
| 7 |
|
| 8 |
BEGIN_MESSAGE_MAP(CPluginApp, CWinApp) |
| 9 |
END_MESSAGE_MAP() |
| 10 |
|
| 11 |
CPluginApp theApp; |
| 12 |
|
| 13 |
////////////////////////////////////////////////////////////////////////// |
| 14 |
|
| 15 |
CPluginApp::CPluginApp() |
| 16 |
{ |
| 17 |
} |
| 18 |
|
| 19 |
BOOL CPluginApp::InitInstance() |
| 20 |
{ |
| 21 |
CWinApp::InitInstance(); |
| 22 |
|
| 23 |
return TRUE; |
| 24 |
} |
| 25 |
|
| 26 |
////////////////////////////////////////////////////////////////////////// |
|