90 lines
2.1 KiB
C++
90 lines
2.1 KiB
C++
|
//+-------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
//
|
||
|
// Copyright (C) Microsoft Corporation, 1997 - 1999
|
||
|
//
|
||
|
// File: ctv.cpp
|
||
|
//
|
||
|
//--------------------------------------------------------------------------
|
||
|
|
||
|
// ctv.cpp : Implementation of CCtvApp and DLL registration.
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include "ctv.h"
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
#define new DEBUG_NEW
|
||
|
#undef THIS_FILE
|
||
|
static char THIS_FILE[] = __FILE__;
|
||
|
#endif
|
||
|
|
||
|
|
||
|
CCtvApp NEAR theApp;
|
||
|
|
||
|
const GUID CDECL BASED_CODE _tlid =
|
||
|
{ 0xcd6c7865, 0x5864, 0x11d0, { 0xab, 0xf0, 0, 0x20, 0xaf, 0x6b, 0xb, 0x7a } };
|
||
|
const WORD _wVerMajor = 1;
|
||
|
const WORD _wVerMinor = 0;
|
||
|
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////
|
||
|
// CCtvApp::InitInstance - DLL initialization
|
||
|
|
||
|
BOOL CCtvApp::InitInstance()
|
||
|
{
|
||
|
BOOL bInit = COleControlModule::InitInstance();
|
||
|
|
||
|
if (bInit)
|
||
|
{
|
||
|
// TODO: Add your own module initialization code here.
|
||
|
}
|
||
|
|
||
|
return bInit;
|
||
|
}
|
||
|
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////
|
||
|
// CCtvApp::ExitInstance - DLL termination
|
||
|
|
||
|
int CCtvApp::ExitInstance()
|
||
|
{
|
||
|
// TODO: Add your own module termination code here.
|
||
|
|
||
|
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, _wVerMajor, _wVerMinor))
|
||
|
return ResultFromScode(SELFREG_E_TYPELIB);
|
||
|
|
||
|
if (!COleObjectFactoryEx::UpdateRegistryAll(FALSE))
|
||
|
return ResultFromScode(SELFREG_E_CLASS);
|
||
|
|
||
|
return NOERROR;
|
||
|
}
|