1234567891011121314151617181920212223242526272829303132333435363738 |
- // OTSSQLiteDll.cpp :
- //
- #include "stdafx.h"
- #include "OTSSQLiteDll.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #endif
- // COTSSQLiteDllApp
- BEGIN_MESSAGE_MAP(COTSSQLiteDllApp, CWinApp)
- END_MESSAGE_MAP()
- // COTSSQLiteDllApp
- COTSSQLiteDllApp::COTSSQLiteDllApp()
- {
-
- }
- //
- COTSSQLiteDllApp theApp;
- //
- BOOL COTSSQLiteDllApp::InitInstance()
- {
- CWinApp::InitInstance();
- return TRUE;
- }
|