38 lines
946 B
C++
38 lines
946 B
C++
|
//---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1992 - 1995
|
||
|
//
|
||
|
// File: cipseccf.hxx
|
||
|
//
|
||
|
// Contents: Windows NT 4.0 IP Security Object Class Factory
|
||
|
//
|
||
|
// CIISIPSecurityCF::CreateInstance
|
||
|
//
|
||
|
// History: 21-04-97 sophiac Created.
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
#ifndef _CNAMSCF_HXX_
|
||
|
#define _CNAMSCF_HXX
|
||
|
|
||
|
|
||
|
|
||
|
//+------------------------------------------------------------------------
|
||
|
//
|
||
|
// Class: CIISIPSecurityCF (tag)
|
||
|
//
|
||
|
// Purpose: Class factory for standard Domain object.
|
||
|
//
|
||
|
// Interface: IClassFactory
|
||
|
//
|
||
|
//-------------------------------------------------------------------------
|
||
|
|
||
|
class CIISIPSecurityCF : public StdClassFactory
|
||
|
{
|
||
|
public:
|
||
|
STDMETHOD(CreateInstance)(IUnknown * pUnkOuter, REFIID iid, LPVOID * ppv);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // #ifndef _CNAMSCG_HXX_
|