MyBstr.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
- // MyBstr.cpp : Implementation of CMyBstr
- #include "stdafx.h"
- #include "DemoBstr.h"
- #include "MyBstr.h"
- /////////////////////////////////////////////////////////////////////////////
- // CMyBstr
- STDMETHODIMP CMyBstr::Authen(BSTR name, BSTR pwd, BSTR *Result)
- {
- AFX_MANAGE_STATE(AfxGetStaticModuleState())
- // TODO: Add your implementation code here
- if(this->m_pwd!=NULL)
- {
- ::SysFreeString(this->m_pwd);
- this->m_pwd=NULL;
- }
- this->m_pwd=::SysAllocString(pwd);
- ::SysFreeString(pwd);
- if(this->m_uid!=NULL)
- {
- ::SysFreeString(this->m_uid);
- this->m_uid=NULL;
- }
- this->m_uid=::SysAllocString(name);
- ::SysFreeString(name);
- *Result=::SysAllocString(L"OK");
- return S_OK;
- }