home *** CD-ROM | disk | FTP | other *** search
- // Smile.cpp : Implementation of CSmileApp and DLL registration.
-
- #include "stdafx.h"
- #include "Smile.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
-
- CSmileApp theApp;
-
- const GUID CDECL BASED_CODE _tlid =
- { 0xc01fa300, 0xb475, 0x11d1, { 0x87, 0xe8, 0x0, 0x60, 0x97, 0xba, 0x8d, 0x75 } };
- const WORD _wVerMajor = 1;
- const WORD _wVerMinor = 0;
-
-
- ///////////////////////////////////////////////////////////////////////////
- // CSmileApp::InitInstance - DLL initialization
-
- BOOL CSmileApp::InitInstance()
- {
- BOOL bInit = COleControlModule::InitInstance();
-
- if (bInit)
- {
- }
-
- return bInit;
- }
-
-
- ////////////////////////////////////////////////////////////////////////////
- // CSmileApp::ExitInstance - DLL termination
-
- int CSmileApp::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;
- }
-