22 lines
440 B
C++
22 lines
440 B
C++
|
|
||
|
|
||
|
|
||
|
//+------------------------------------------------------------------------
|
||
|
//
|
||
|
// Class: CWinNTProviderCF (tag)
|
||
|
//
|
||
|
// Purpose: Class factory for standard Provider object.
|
||
|
//
|
||
|
// Interface: IClassFactory
|
||
|
//
|
||
|
//-------------------------------------------------------------------------
|
||
|
|
||
|
class CWinNTProviderCF : public StdClassFactory
|
||
|
{
|
||
|
public:
|
||
|
STDMETHOD(CreateInstance)(IUnknown * pUnkOuter, REFIID iid, LPVOID * ppv);
|
||
|
};
|
||
|
|
||
|
|
||
|
|