123456789101112131415161718192021222324252627282930313233343536373839 |
- // OTSInterface.cpp : define the DLL initialization routines
- //
- #include "stdafx.h"
- #include "OTSClrInterface.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #endif
- // COTSInterfaceApp
- BEGIN_MESSAGE_MAP(COTSInterfaceApp, CWinApp)
- END_MESSAGE_MAP()
- COTSInterfaceApp::COTSInterfaceApp()
- {
-
- }
- COTSInterfaceApp theApp;
- BOOL COTSInterfaceApp::InitInstance()
- {
- CWinApp::InitInstance();
- return TRUE;
- }
|