Leaked source code of windows server 2003
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.

19 lines
400 B

  1. #ifndef __SPINFO_H_
  2. #define __SPINFO_H_
  3. #include "scclient.h"
  4. class CSPInfo
  5. {
  6. public:
  7. CSPInfo();
  8. ~CSPInfo();
  9. HRESULT hrInitialize(LPWSTR pwszProgID);
  10. HRESULT hrGetInterface(IMDServiceProvider **ppProvider);
  11. void GetSCClient(CSecureChannelClient **ppSCClient);
  12. private:
  13. IMDServiceProvider *m_pSP;
  14. CSecureChannelClient *m_pSCClient;
  15. };
  16. #endif __SPINFO_H_