home *** CD-ROM | disk | FTP | other *** search
- // Maths2.cpp : Implementation of CMaths2App and DLL registration.
-
- #include "stdafx.h"
- #include "Maths2.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
-
- CMaths2App theApp;
-
- const GUID CDECL BASED_CODE _tlid =
- { 0x181cb000, 0xbeed, 0x11ce, { 0x96, 0x11, 0, 0xaa, 0, 0x4a, 0x75, 0xcf } };
- const WORD _wVerMajor = 1;
- const WORD _wVerMinor = 0;
-
-
- ///////////////////////////////////////////////////////////////////////////
- // CMaths2App::InitInstance - DLL initialization
-
- BOOL CMaths2App::InitInstance()
- {
- BOOL bInit = COleControlModule::InitInstance();
-
- if (bInit)
- {
- }
-
- return bInit;
- }
-
-
- ////////////////////////////////////////////////////////////////////////////
- // CMaths2App::ExitInstance - DLL termination
-
- int CMaths2App::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;
- }
-