You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.9 KiB
78 lines
1.9 KiB
/**********************************************************************/
|
|
/** Microsoft Passport **/
|
|
/** Copyright(c) Microsoft Corporation, 1999 - 2001 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
PassportFactory.h
|
|
defines the manager factory object
|
|
|
|
FILE HISTORY:
|
|
|
|
*/
|
|
|
|
// PassportFactory.h : Declaration of the CPassportFactory
|
|
|
|
#ifndef __PASSPORTFACTORY_H_
|
|
#define __PASSPORTFACTORY_H_
|
|
|
|
#include "resource.h" // main symbols
|
|
#include "Passport.h"
|
|
#include "Manager.h"
|
|
#include "PassportLock.hpp"
|
|
#include "PassportGuard.hpp"
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPassportFactory
|
|
class ATL_NO_VTABLE CPassportFactory :
|
|
public CComObjectRootEx<CComMultiThreadModel>,
|
|
public CComCoClass<CPassportFactory, &CLSID_PassportFactory>,
|
|
public ISupportErrorInfo,
|
|
public IDispatchImpl<IPassportFactory, &IID_IPassportFactory, &LIBID_PASSPORTLib>
|
|
{
|
|
public:
|
|
CPassportFactory()
|
|
{
|
|
m_pUnkMarshaler = NULL;
|
|
}
|
|
|
|
public:
|
|
|
|
DECLARE_REGISTRY_RESOURCEID(IDR_PASSPORTFACTORY)
|
|
|
|
DECLARE_PROTECT_FINAL_CONSTRUCT()
|
|
DECLARE_GET_CONTROLLING_UNKNOWN()
|
|
|
|
BEGIN_COM_MAP(CPassportFactory)
|
|
COM_INTERFACE_ENTRY(IPassportFactory)
|
|
COM_INTERFACE_ENTRY(IDispatch)
|
|
COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
|
COM_INTERFACE_ENTRY_AGGREGATE(IID_IMarshal, m_pUnkMarshaler.p)
|
|
END_COM_MAP()
|
|
|
|
HRESULT FinalConstruct()
|
|
{
|
|
return CoCreateFreeThreadedMarshaler(
|
|
GetControllingUnknown(), &m_pUnkMarshaler.p);
|
|
}
|
|
|
|
void FinalRelease()
|
|
{
|
|
m_pUnkMarshaler.Release();
|
|
}
|
|
|
|
CComPtr<IUnknown> m_pUnkMarshaler;
|
|
|
|
// ISupportsErrorInfo
|
|
STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
|
|
|
|
// IPassportFactory
|
|
public:
|
|
STDMETHOD(CreatePassportManager)(/*[out,retval]*/ IDispatch** pDisp);
|
|
|
|
private:
|
|
};
|
|
|
|
#endif //__PASSPORTFACTORY_H_
|
|
|