OTSSQLiteDll.cpp 390 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // OTSSQLiteDll.cpp :
  2. //
  3. #include "stdafx.h"
  4. #include "OTSSQLiteDll.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #endif
  8. // COTSSQLiteDllApp
  9. BEGIN_MESSAGE_MAP(COTSSQLiteDllApp, CWinApp)
  10. END_MESSAGE_MAP()
  11. // COTSSQLiteDllApp
  12. COTSSQLiteDllApp::COTSSQLiteDllApp()
  13. {
  14. }
  15. //
  16. COTSSQLiteDllApp theApp;
  17. //
  18. BOOL COTSSQLiteDllApp::InitInstance()
  19. {
  20. CWinApp::InitInstance();
  21. return TRUE;
  22. }