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
400 B
20 lines
400 B
#ifndef __SPINFO_H_
|
|
#define __SPINFO_H_
|
|
|
|
#include "scclient.h"
|
|
|
|
class CSPInfo
|
|
{
|
|
public:
|
|
CSPInfo();
|
|
~CSPInfo();
|
|
|
|
HRESULT hrInitialize(LPWSTR pwszProgID);
|
|
HRESULT hrGetInterface(IMDServiceProvider **ppProvider);
|
|
void GetSCClient(CSecureChannelClient **ppSCClient);
|
|
private:
|
|
IMDServiceProvider *m_pSP;
|
|
CSecureChannelClient *m_pSCClient;
|
|
};
|
|
|
|
#endif __SPINFO_H_
|