OTSClrInterface.cpp 408 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // OTSInterface.cpp : define the DLL initialization routines
  2. //
  3. #include "stdafx.h"
  4. #include "OTSClrInterface.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #endif
  8. // COTSInterfaceApp
  9. BEGIN_MESSAGE_MAP(COTSInterfaceApp, CWinApp)
  10. END_MESSAGE_MAP()
  11. COTSInterfaceApp::COTSInterfaceApp()
  12. {
  13. }
  14. COTSInterfaceApp theApp;
  15. BOOL COTSInterfaceApp::InitInstance()
  16. {
  17. CWinApp::InitInstance();
  18. return TRUE;
  19. }