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
406 B

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