45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
//*********************************************************************
|
|
//* Microsoft Windows **
|
|
//* Copyright(c) Microsoft Corp., 1999 **
|
|
//*********************************************************************
|
|
//
|
|
// SERVER.CPP - component server for MSObWeb
|
|
//
|
|
// HISTORY:
|
|
//
|
|
// 1/27/99 a-jaswed Created.
|
|
//
|
|
// The FactoryDataArray contains the components which
|
|
// can be served.
|
|
|
|
#include "cunknown.h"
|
|
#include "cfactory.h"
|
|
#include "msobcomm.h"
|
|
|
|
//MIDL
|
|
#include "obcomm.h"
|
|
|
|
|
|
|
|
//
|
|
// The following array contains the data used by CFactory
|
|
// to create components. Each element in the array contains
|
|
// the CLSID, pointer to create function, and the name
|
|
// of the component to place in the registry.
|
|
//
|
|
|
|
CFactoryData g_FactoryDataArray[] =
|
|
{
|
|
{&CLSID_ObCommunicationManager,
|
|
CObCommunicationManager::CreateInstance,
|
|
L"ObCommunicationManager Component", // Friendly Name
|
|
L"ObCommunicationManager.1", // ProgID
|
|
L"ObCommunicationManager", // Version Independent ProgID
|
|
NULL, // Function to register component categories
|
|
NULL, 0},
|
|
};
|
|
int g_cFactoryDataEntries = sizeof(g_FactoryDataArray) / sizeof(CFactoryData) ;
|
|
|
|
|
|
|