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.
20 lines
406 B
20 lines
406 B
#ifndef __SCPINFO_H_
|
|
#define __SCPINFO_H_
|
|
|
|
#include "scclient.h"
|
|
|
|
class CSCPInfo
|
|
{
|
|
public:
|
|
CSCPInfo();
|
|
~CSCPInfo();
|
|
|
|
HRESULT hrInitialize(LPWSTR pwszProgID);
|
|
HRESULT hrGetInterface(ISCPSecureAuthenticate **ppSCP);
|
|
void GetSCClient(CSecureChannelClient **ppSCClient);
|
|
private:
|
|
ISCPSecureAuthenticate *m_pSCP;
|
|
CSecureChannelClient *m_pSCClient;
|
|
};
|
|
|
|
#endif __SPINFO_H_
|