MyBstr.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // MyBstr.cpp : Implementation of CMyBstr
  2. #include "stdafx.h"
  3. #include "DemoBstr.h"
  4. #include "MyBstr.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CMyBstr
  7. STDMETHODIMP CMyBstr::Authen(BSTR name, BSTR pwd, BSTR *Result)
  8. {
  9. AFX_MANAGE_STATE(AfxGetStaticModuleState())
  10. // TODO: Add your implementation code here
  11. if(this->m_pwd!=NULL)
  12. {
  13. ::SysFreeString(this->m_pwd);
  14. this->m_pwd=NULL;
  15. }
  16. this->m_pwd=::SysAllocString(pwd);
  17. ::SysFreeString(pwd);
  18. if(this->m_uid!=NULL)
  19. {
  20. ::SysFreeString(this->m_uid);
  21. this->m_uid=NULL;
  22. }
  23. this->m_uid=::SysAllocString(name);
  24. ::SysFreeString(name);
  25. *Result=::SysAllocString(L"OK");
  26. return S_OK;
  27. }