home *** CD-ROM | disk | FTP | other *** search
- // db.cpp : Implementation of CDbApp and DLL registration.
- //
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) 1992-1995 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
-
- #include "stdafx.h"
- #include "db.h"
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
- CDbApp NEAR theApp;
-
- const GUID CDECL BASED_CODE _tlid =
- { 0xeff01748, 0x7825, 0x101b, { 0x83, 0x75, 0x0, 0xaa, 0x0, 0x37, 0x3f, 0xb9 } };
- const WORD _wVerMajor = 1;
- const WORD _wVerMinor = 0;
-
- ////////////////////////////////////////////////////////////////////////////
- // CDbApp::InitInstance - DLL initialization
-
- BOOL CDbApp::InitInstance()
- {
- // wire up resources from the database DLL (OLE and core are automatic)
- AfxDbInitModule();
-
- BOOL bInit = COleControlModule::InitInstance();
- return bInit;
- }
-
- ////////////////////////////////////////////////////////////////////////////
- // CDbApp::ExitInstance - DLL termination
-
- int CDbApp::ExitInstance()
- {
- return COleControlModule::ExitInstance();
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // DllRegisterServer - Adds entries to the system registry
-
- STDAPI DllRegisterServer(void)
- {
- AFX_MANAGE_STATE(_afxModuleAddrThis);
-
- if (!AfxOleRegisterTypeLib(AfxGetInstanceHandle(), _tlid))
- return ResultFromScode(SELFREG_E_TYPELIB);
-
- if (!COleObjectFactoryEx::UpdateRegistryAll(TRUE))
- return ResultFromScode(SELFREG_E_CLASS);
-
- return NOERROR;
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // DllUnregisterServer - Removes entries from the system registry
-
- STDAPI DllUnregisterServer(void)
- {
- AFX_MANAGE_STATE(_afxModuleAddrThis);
-
- if (!AfxOleUnregisterTypeLib(_tlid))
- return ResultFromScode(SELFREG_E_TYPELIB);
-
- if (!COleObjectFactoryEx::UpdateRegistryAll(FALSE))
- return ResultFromScode(SELFREG_E_CLASS);
-
- return NOERROR;
- }
-
- /////////////////////////////////////////////////////////////////////////////
-