Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

38 lines
909 B

// hsmconpt.h : Declaration of the CHsmConnPoint
#ifndef __HSMCONNPOINT_H_
#define __HSMCONNPOINT_H_
#include "resource.h" // main symbols
/////////////////////////////////////////////////////////////////////////////
// CHsmConnPoint
class ATL_NO_VTABLE CHsmConnPoint :
public CComObjectRoot, // this may change in the future to CWsbObject
public CComCoClass<CHsmConnPoint, &CLSID_HsmConnPoint>,
public IHsmConnPoint
{
public:
CHsmConnPoint() {}
DECLARE_REGISTRY_RESOURCEID(IDR_HSMCONNPOINT)
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_COM_MAP(CHsmConnPoint)
COM_INTERFACE_ENTRY(IHsmConnPoint)
END_COM_MAP()
// CComObjectRoot
public:
STDMETHOD(FinalConstruct)(void);
STDMETHOD(FinalRelease)(void);
// IHsmConnPoint
public:
STDMETHOD(GetFsaServer)(/*[out]*/ IFsaServer **ppFsaServer);
STDMETHOD(GetEngineServer)(/*[out]*/ IHsmServer **ppHsmServer);
};
#endif //__HSMCONNPOINT_H_