windows-nt/Source/XPSP1/NT/base/cluster/mgmt/inc/cfactory.h

68 lines
2 KiB
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1999-2000 Microsoft Corporation
//
// Module Name:
// CFactory.h
//
// Description:
// Class Factory implementation.
//
// Maintained By:
// Geoffrey Pease (GPease) 22-NOV-1999
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
typedef HRESULT (*LPCREATEINST)( IUnknown ** ppunkOut );
typedef HRESULT (*CATIDREGISTER)( ICatRegister *, BOOL );
typedef struct _ClassTable {
LPCREATEINST pfnCreateInstance; // creation function for class
const CLSID * rclsid; // classes in this DLL
LPCTSTR pszName; // Class name for debugging
LPCTSTR pszComModel; // String indicating COM threading model
CATIDREGISTER pfnCatIDRegister; // catagory/component ID support registration
const CLSID * rclsidAppId; // the App ID for this component
LPCTSTR pszSurrogate; // the surrogate for the component - "" or NULL indicates use the COM default.
} CLASSTABLE[], *LPCLASSTABLE;
typedef struct _CategoryIdTable {
const CATID * rcatid; // CATID GUID
LPCTSTR pszName; // CATID name
} CATIDTABLE[], *LPCATIDTABLE;
// CFactory
class
CFactory:
public IClassFactory
{
private:
// IUnknown
LONG m_cRef;
// IClassFactory data
LPCREATEINST m_pfnCreateInstance;
private: // Methods
CFactory( );
~CFactory();
STDMETHOD( HrInit )( LPCREATEINST lpfn );
public: // Methods
friend HRESULT CALLBACK
DllGetClassObject( REFCLSID rclsid, REFIID riid, void** ppv );
// IUnknown
STDMETHOD( QueryInterface )( REFIID riid, LPVOID *ppv );
STDMETHOD_( ULONG, AddRef )(void);
STDMETHOD_( ULONG, Release )(void);
// IClassFactory
STDMETHOD( CreateInstance )( IUnknown *punkOuter, REFIID riid, LPVOID *ppv );
STDMETHOD( LockServer )( BOOL fLock );
};
typedef CFactory* LPCFACTORY ;